LoginSignup
1
1

More than 5 years have passed since last update.

ユーザーの権限の追加のメモ

Last updated at Posted at 2012-09-07

ここを参照
http://www.nouveller.com/quick-tips/quick-tip-9-change-the-default-capabilities-of-wordpress-users-with-ease/

    // store the 'Contributor' role

    $edit_contributor = get_role('contributor');

    // add a capability of 'upload_files'

    $edit_contributor->add_cap('upload_files');
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1