wordpressにてwp simple booking calenderというプラグインに投稿者の権限を追加したく、下記をfunction.phpに記載しましたが、権限の追加が出来ません。
function register_my_custom_menu_page() { if (current_user_can('author')) { add_menu_page( 'custom menu title', 'カレンダー', 'manage_options', 'admin.php?page=wp-simple-booking-calendar', '', plugins_url( '' ), 6 ); } } add_action( 'admin_menu', 'register_my_custom_menu_page' );
下記のコードを参考にしました。
https://teratail.com/questions/74226
対象のプラグインはこちらです。
https://ja.wordpress.org/plugins/wp-simple-booking-calendar/
詳しい方がいらっしゃれば教えて頂きたいです。

回答1件
あなたの回答
tips
プレビュー