To dispaly post ID’s in your WordPress admin dashboard add the following php code in your theme’s functions.php file: /** *post ID*/ add_filter('manage_posts_columns', 'posts_columns_id', 5); add_action('manage_posts_custom_column'...
WordPress is a free content management system (CMS) written in PHP and paired with a MySQL or MariaDB database. Currently, WordPress is used by more than 60 million websites.
UPDATE: In January 2021 I started another blog wp✘SS that is dedicated to troubleshooting most common WordPress problems, for more WordPress articles please head over to wpxss.com.
To dispaly post ID’s in your WordPress admin dashboard add the following php code in your theme’s functions.php file: /** *post ID*/ add_filter('manage_posts_columns', 'posts_columns_id', 5); add_action('manage_posts_custom_column'...