Sembunyikan menu di wordpress Backend admin
ronalyw
Tuesday, 06 August 2024 11:23 am
dibaca 165 kali

fungsi menyembunyikan hide menu admin /backend kususnya penulis/author :

function hide_custom_post_type_for_authors() {
if (current_user_can(‘author’)) {
// Replace ‘dfads’ with the slug of your custom post type
remove_menu_page(‘edit.php?post_type=dfads’);
}
}
add_action(‘admin_menu’, ‘hide_custom_post_type_for_authors’, 100);

Social tagging: