php - Remove master slider admin menu item from wordpress -


i need remove master slider menu item wordpress admin menu. have tried below no luck.

function edit_admin_menus() {   remove_menu_page('master-sliders'); } add_action( 'admin_menu', 'edit_admin_menus' );    

this should work you. tried on end , works no problems:

function sb_remove_admin_menus(){     if ( function_exists('masterslider') ) { ?>         <style type="text/css">         #toplevel_page_master-slider {             display: none;         }                </style>    <?php } } add_action('admin_menu', 'sb_remove_admin_menus'); 

Comments

Popular posts from this blog

asp.net mvc - SSO between MVCForum and Umbraco7 -

Python Tkinter keyboard using bind -

ubuntu - Selenium Node Not Connecting to Hub, Not Opening Port -