How to Remove Duplicate Timestamp from Post and Page Admin Panel
-
Hello,
Love the plugin! I was using my own code for this previously, and this makes things uniform and will save a bunch of time. Thank you!
The only thing I hate is having a duplicate Last Modified column in my Posts and Pages admin view. I tried a bunch of names, including last_modified, and none of them were correct.
I have the code that can remove columns from these views, see below, but I can’t seem to find the name of either the original last modified or your plugin’s enhanced last modified column.
Since I’m always the author of my columns, I really don’t need your new column, but I’m fine to get rid of the original last modified column instead.
Thanks!
add_filter('manage_post_posts_columns', function ( $columns ) // Removes unwanted columns from the posts admin view // { unset($columns['tags'], $columns['last_modified'], $columns['comments']); return $columns; } );
- The topic ‘How to Remove Duplicate Timestamp from Post and Page Admin Panel’ is closed to new replies.