-
Home
-
Guest Author Affiliate
- Tips
function plt_hide_guest_author_affiliate_menus() {
//Hide "Settings → Guest Author Affiliate".
remove_submenu_page('options-general.php', 'guest_author_affiliate_settings');
//Hide "Settings → Contact Us".
remove_submenu_page('options-general.php', 'guest_author_affiliate_settings-contact');
//Hide "Settings → Support Forum".
remove_submenu_page('options-general.php', 'guest_author_affiliate_settings-wp-support-forum');
//Hide "Settings → Upgrade".
remove_submenu_page('options-general.php', 'guest_author_affiliate_settings-pricing');
}
add_action('admin_menu', 'plt_hide_guest_author_affiliate_menus', 1000000000);
Where do I put this code?