Remove admin column for user roles
-
I want to remove / not display the sortable Post Views column in admin area, for other users except administrator.
I tried this without results
add_filter( 'manage_posts_columns', 'custom_pages_columns' ); function custom_pages_columns( $columns ) { unset( $columns['post_views'] ); return $columns; }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Remove admin column for user roles’ is closed to new replies.