-
Home
-
Blog Yazılarını Sosyal Medyada Otomatik Paylaşın – Plexorin
- Tips
How to Hide the "Plexorin" Admin Menu
function plt_hide_blog_to_social_plexorin_menus() {
//Hide the "Plexorin" menu.
remove_menu_page('bts-plexorin-settings');
}
add_action('admin_menu', 'plt_hide_blog_to_social_plexorin_menus', 11);
Where do I put this code?
How to Hide the "Plexorin Post Settings" Meta Box
function plt_hide_blog_to_social_plexorin_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Plexorin Post Settings" meta box.
remove_meta_box('bts_plexorin_meta_box', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_blog_to_social_plexorin_metaboxes', 20);