Display Page/Post ID
/** * Add Sortable Post ID Column Before Author in Admin List View */ function add_sortable_post_id_before_author_column($columns) { $new_columns = array(); foreach ($columns as $key => $value) { if ($key === ‘author’) { $new_columns[‘post_id’] = ‘ID’; } $new_columns[$key] = $value; }…Continue reading