Code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
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; | |
} | |
} | |
?> |
Screen shot
Note
Description | 記事や固定ページの一覧のテーブルの列にID項目を加える。 保守業務等では、IDが一覧化されると地味に便利。 |
---|---|
WordPress Ver. | 3.5 |
Via | Add post ID to posts, pages admin columns |