-
Home
-
Frizzly – Social Share Buttons
- Tips
How to Hide the "Frizzly" Admin Menu
function plt_hide_frizzly_menus() {
//Hide the "Settings → Frizzly" menu.
remove_submenu_page('options-general.php', 'frizzly_settings');
}
add_action('admin_menu', 'plt_hide_frizzly_menus', 11);
Where do I put this code?
How to Hide the "Frizzly Post Specific Settings" Meta Box
function plt_hide_frizzly_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Frizzly Post Specific Settings" meta box.
remove_meta_box('frizzly-post-meta', $screen->id, 'advanced');
}
add_action('add_meta_boxes', 'plt_hide_frizzly_metaboxes', 20);