WordPress:機能を動的にユーザー機能を変更します.PHP
2721 ワード
WordPress 様々なユーザーを提供するroles and capabilities .
これは、ユーザーの能力を変更することができます
以下はコード例です.
WordPressのユーザー機能一覧here .
これは、ユーザーの能力を変更することができます
functions.php
動的に.言い換えれば、セキュリティに関してはadministrator
編集する方法があるとき functions.php
例えばFTP .以下はコード例です.
# functions.php
function custom_user_cap() {
// get user
$user = new WP_User( <user-ID> );
//$user = new WP_User( '<user-login-name>' );
//$user = wp_get_current_user();
// modify capabilities
// for example, those to manage users
$user->add_cap( 'list_users' );
$user->add_cap( 'edit_users' );
$user->add_cap( 'create_users' );
$user->add_cap( 'delete_users' );
}
// register action
add_action( 'admin_init', 'custom_user_cap' );
追加functions.php
ID、ログイン名、ログイン情報、ユーザが管理している機能をユーザに与えるreader
またはeditor
.WordPressのユーザー機能一覧here .
Reference
この問題について(WordPress:機能を動的にユーザー機能を変更します.PHP), 我々は、より多くの情報をここで見つけました https://dev.to/nabbisen/wordpress-modify-user-capabilities-dynamically-with-functions-php-383nテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol