Skip to content

Instantly share code, notes, and snippets.

@bryanmonzon
Created November 6, 2014 19:19
Show Gist options
  • Save bryanmonzon/97379d89ef6b5eb7f347 to your computer and use it in GitHub Desktop.
Save bryanmonzon/97379d89ef6b5eb7f347 to your computer and use it in GitHub Desktop.
<?php
function my_remove_wp_seo_meta_box() {
if( !current_user_can('manage_options' ) ) {
remove_meta_box( 'wpseo_meta', 'artist', 'normal' );
}
}
add_action( 'add_meta_boxes', 'my_remove_wp_seo_meta_box' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment