• I would like to remove the WordPress SEO Settings area, with it’s two fields, from the User profile page. I really don’t want my editors and contributors to see or play with this 🙂

    Is there a filter I can pass in my functions to remove this display from the user profile page?

    Thanks in advance!

    http://wordpress.org/extend/plugins/wordpress-seo/

Viewing 3 replies - 1 through 3 (of 3 total)
  • I’d love to know this aswell.

    me as well. Please help Yoast!

    I just put this together real quick, hope it helps:

    # global
    global $wpseo_admin;
    
    # this removes when editing 'YOUR PROFILE'
    remove_action( 'show_user_profile', array( $wpseo_admin, 'user_profile' ) );
    
    # this removes when editing 'EDIT PROFILE'
    remove_action( 'edit_user_profile', array( $wpseo_admin, 'user_profile' ) );
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: WordPress SEO by Yoast] Remove WordPress SEO Settings area from User profile page?’ is closed to new replies.