-
Home
-
WP2Social Auto Publish
- Tips
function plt_hide_facebook_auto_publish_menus() {
//Hide "WP2Social Auto Publish".
remove_menu_page('facebook-auto-publish-settings');
//Hide "WP2Social Auto Publish → Settings".
remove_submenu_page('facebook-auto-publish-settings', 'facebook-auto-publish-settings');
//Hide "WP2Social Auto Publish → Logs".
remove_submenu_page('facebook-auto-publish-settings', 'facebook-auto-publish-log');
//Hide "WP2Social Auto Publish → About".
remove_submenu_page('facebook-auto-publish-settings', 'facebook-auto-publish-about');
//Hide "WP2Social Auto Publish → Suggest a Feature".
remove_submenu_page('facebook-auto-publish-settings', 'facebook-auto-publish-suggest-feature');
}
add_action('admin_menu', 'plt_hide_facebook_auto_publish_menus', 11);
Where do I put this code?