I need to remove the Master Slider menu item from the wordpress admin menu. I have already tried the below but with no luck.
function edit_admin_menus() {
remove_menu_page('master-sliders');
}
add_action( 'admin_menu', 'edit_admin_menus' );
I need to remove the Master Slider menu item from the wordpress admin menu. I have already tried the below but with no luck.
function edit_admin_menus() {
remove_menu_page('master-sliders');
}
add_action( 'admin_menu', 'edit_admin_menus' );
You must be logged in to post a comment.
This should work for you. I tried it on my end and it works with no problems:
See if that resolves.