-
Home
-
Sticky Content – keep any section visible while visitors scroll
- Tips
function plt_hide_sticky_menu_block_menus() {
//Hide the "Sticky Content" menu.
remove_menu_page('sticky-content-dashboard');
//Hide the "Sticky Content → ShortCodes" menu.
remove_submenu_page('sticky-content-dashboard', 'edit.php?post_type=smb');
//Hide the "Sticky Content → Help And Demo" menu.
remove_submenu_page('sticky-content-dashboard', 'sticky-content-dashboard');
}
add_action('admin_menu', 'plt_hide_sticky_menu_block_menus', 11);
Where do I put this code?