{"id":7607,"date":"2021-09-30T19:39:32","date_gmt":"2021-10-01T02:39:32","guid":{"rendered":"https:\/\/codedcommerce.com\/?post_type=product&#038;p=7607"},"modified":"2023-10-08T19:03:55","modified_gmt":"2023-10-09T02:03:55","slug":"add-column-to-admin-posts-table","status":"publish","type":"woo-code","link":"https:\/\/codedcommerce.com\/woo\/add-column-to-admin-posts-table\/","title":{"rendered":"Add column to admin posts table"},"content":{"rendered":"\n<pre class=\"wp-block-code language-php\"><code>add_action( 'manage_posts_custom_column', function( $column, $post_id ) {\n\n\tswitch( $column ) {\n\n\t\tcase 'modified':\n\t\t\t$post_modified = get_post_field( 'post_modified', $post_id, 'raw' );\n\t\t\t$post_modified = strtotime( $post_modified );\n\t\t\techo date( 'Y\/m\/d h:i a', $post_modified );\n\t\t\tbreak;\n\n\t}\n\n}, 10, 2 );\n\nadd_filter( 'manage_edit-post_columns', function( $columns ) {\n\n\t$columns&#91;'modified'] = 'Last Modified';\n\n\treturn $columns;\n\n} );<\/code><\/pre>\n","protected":false},"template":"","class_list":["post-7607","woo-code","type-woo-code","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/codedcommerce.com\/wp-json\/wp\/v2\/woo-code\/7607","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codedcommerce.com\/wp-json\/wp\/v2\/woo-code"}],"about":[{"href":"https:\/\/codedcommerce.com\/wp-json\/wp\/v2\/types\/woo-code"}],"wp:attachment":[{"href":"https:\/\/codedcommerce.com\/wp-json\/wp\/v2\/media?parent=7607"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}