Created
August 7, 2015 02:59
-
-
Save designbuildtest/b97cb9c6c66abcc157f1 to your computer and use it in GitHub Desktop.
WordPress remove 'Mine' tab
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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