Last active
August 29, 2015 14:26
-
-
Save designbuildtest/02db20a0758795e963a6 to your computer and use it in GitHub Desktop.
WordPress custom manage POSTS view
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_custom_manage_posts_columns( $columns ) { | |
| unset( $columns['author'] ); | |
| unset( $columns['date'] ); | |
| unset( $columns['comments'] ); | |
| unset( $columns['categories'] ); | |
| unset( $columns['tags'] ); | |
| return $columns; | |
| } | |
| add_filter( 'manage_posts_columns', 'dbt_custom_manage_posts_columns' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment