How To Remove or Hide Appearance->Background from Admin Menu
I have a menu Appearance->Background on WP admin, i want to remove or hide from Editor user. i was try to using
public function remove_menu()
if( !current_user_can( 'administrator' )){
{
if( !current_user_can( 'administrator' ))
{
remove_submenu_page( 'themes.php', 'background.php');
}
}
add_action('admin_init', [$this,'remove_menu']);
But the menu still appear, what solution for this?Thanks
Topic theme-customizer admin-menu Wordpress
Category Web