Skip to content

Instantly share code, notes, and snippets.

@ovizii
Created April 10, 2014 15:21
Show Gist options
  • Save ovizii/10393443 to your computer and use it in GitHub Desktop.
Save ovizii/10393443 to your computer and use it in GitHub Desktop.
Show Post/Page IDs in backend
add_filter('manage_posts_columns', 'posts_columns_id', 5);
add_action('manage_posts_custom_column', 'posts_custom_id_columns', 5, 2);
add_filter('manage_pages_columns', 'posts_columns_id', 5);
add_action('manage_pages_custom_column', 'posts_custom_id_columns', 5, 2);
function posts_columns_id($defaults){
$defaults['wps_post_id'] = __('ID');
return $defaults;
}
function posts_custom_id_columns($column_name, $id){
if($column_name === 'wps_post_id'){
echo $id;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment