Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは、ワード プレスのオプション ページがあり、編集者以上のすべてのユーザーが閲覧できるようにしたいと考えています。私のコードは次のとおりです。
add_menu_page('example', 'example', 'editor', __FILE__, array('example', 'example'));
毎回異なるユーザー ロールで複数回貼り付けようとしましたが、各ユーザー ロールをカンマで区切っても機能しません。これは可能ですか?
代わりに、
if(current_user_can('editor')){ add_menu_page(..., 'editor', ....); }elseif(current_user_can('someotherrole')){ add_menu_page(..., 'someotherrole', ....); }