Display WordPress post and page ID in admin interface
In WordPress admin interface, when viewing all posts or pages as a list, WordPress offer few display options. We can hide and display some of the attributes and taxonomies of our pages and posts on this list.
In default, WordPress don’t have an option to display page ID or post ID on this list. But getting these ID numbers is useful when using plugins, widgets or theme options that require you to input specific IDs.
So to display the ID numbers, now we are going to add a small code snippet in our theme’s / child theme’s function.php file.
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;
}
}
Then save the file and navigate to Dashboard > Posts or > Pages to see the new column that display our page or post ID numbers.
Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.
Recent Posts
- Disabling Payment Methods in WooCommerce Based on Conditions
- How to Update Product Quantity in WooCommerce Using Custom Code
- Dynamically Generating a Table of Contents in WordPress
- Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
- Understanding the Impact of git reset --hard Command
Your Questions / Comments
If you found this article interesting, found errors, or just want to discuss about it, please get in touch.