Create a sortable ‘Modified Date’ sortable column for posts and pages in wordpress admin area 7
2016-07-14: Post updated to support both pages and posts without redundant/useless code
Paste the following in the functions.php
file of your theme:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | // Register the column for modified date function bf_post_modified_column_register( $columns ) { $columns [ 'post_modified' ] = __( 'Modified Date' , 'mytextdomain' ); return $columns ; } add_filter( 'manage_edit-post_columns' , 'bf_post_modified_column_register' ); add_filter( 'manage_edit-page_columns' , 'bf_post_modified_column_register' ); // Display the modified date column content function bf_post_modified_column_display( $column_name , $post_id ) { if ( 'post_modified' != $column_name ){ return ; } $post_modified = get_post_field( 'post_modified' , $post_id ); if ( ! $post_modified ){ $post_modified = '' . __( 'undefined' , 'mytextdomain' ) . '' ; } echo $post_modified ; } add_action( 'manage_posts_custom_column' , 'bf_post_modified_column_display' , 10, 2 ); add_action( 'manage_pages_custom_column' , 'bf_post_modified_column_display' , 10, 2 ); // Register the modified date column as sortable function bf_post_modified_column_register_sortable( $columns ) { $columns [ 'post_modified' ] = 'post_modified' ; return $columns ; } add_filter( 'manage_edit-post_sortable_columns' , 'bf_post_modified_column_register_sortable' ); add_filter( 'manage_edit-page_sortable_columns' , 'bf_post_modified_column_register_sortable' ); |
When you refresh http://<Your Domain>/wp-admin/edit.php
or http://<Your Domain>/wp-admin/edit.php?post_type=page
the ‘Modified Date’ column will be visible and sortable.