Skip to content

Instantly share code, notes, and snippets.

@designbuildtest
Created August 7, 2015 02:59
Show Gist options
  • Select an option

  • Save designbuildtest/b97cb9c6c66abcc157f1 to your computer and use it in GitHub Desktop.

Select an option

Save designbuildtest/b97cb9c6c66abcc157f1 to your computer and use it in GitHub Desktop.
WordPress remove 'Mine' tab
function dbt_remove_mine_view( $views ) {
unset( $views['mine'] );
return $views;
}
add_action( 'views_edit-page', 'dbt_remove_mine_view' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment