Title: Hide SEO Admin Menu
Last modified: June 30, 2017

---

# Hide SEO Admin Menu

 *  Resolved [bigskillet](https://wordpress.org/support/users/bigskillet/)
 * (@bigskillet)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/hide-seo-admin-menu/)
 * Can you tell me how I can hide the SEO admin menu? I’ve tried:
 * remove_menu_page(‘theseoframework-settings’);
    remove_menu_page(‘theseoframework’);
   remove_menu_page(‘autodescription’);
 * What’s the correct term?
 * Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [Sybre Waaijer](https://wordpress.org/support/users/cybr/)
 * (@cybr)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/hide-seo-admin-menu/#post-9276020)
 * Hi [@bigskillet](https://wordpress.org/support/users/bigskillet/),
 * I believe this is what you’re looking for:
 *     ```
       add_action( 'admin_menu', 'my_remove_seo_from_wp_menu', 999 );
       function my_remove_seo_from_wp_menu() {
   
       	if ( function_exists( 'the_seo_framework' ) ) {
       		$tsf = the_seo_framework();
       		if ( $tsf ) {
       			remove_menu_page( $tsf->seo_settings_page_slug );
       		}
       	}
       }
       ```
   
 * Cheers 🙂
 *  Thread Starter [bigskillet](https://wordpress.org/support/users/bigskillet/)
 * (@bigskillet)
 * [8 years, 11 months ago](https://wordpress.org/support/topic/hide-seo-admin-menu/#post-9278412)
 * Perfect, thank you!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Hide SEO Admin Menu’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/the-seo-framework-extension-manager_2e363c.
   svg)
 * [The SEO Framework - Extension Manager](https://wordpress.org/plugins/the-seo-framework-extension-manager/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/the-seo-framework-extension-manager/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/the-seo-framework-extension-manager/)
 * [Active Topics](https://wordpress.org/support/plugin/the-seo-framework-extension-manager/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/the-seo-framework-extension-manager/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/the-seo-framework-extension-manager/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [bigskillet](https://wordpress.org/support/users/bigskillet/)
 * Last activity: [8 years, 11 months ago](https://wordpress.org/support/topic/hide-seo-admin-menu/#post-9278412)
 * Status: resolved