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
Post a Comment