管理画面のカスタム投稿一覧にタクソノミーを表示する
functions.php
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
function add_custom_column( $defaults ) { $defaults['ctg'] = 'カテゴリー'; //ctg=タクソノミー名 return $defaults; } add_filter('manage_products_posts_columns', 'add_custom_column'); //manage_[カスタム投稿名]_posts_columns function add_custom_column_id($column_name, $id) { if( $column_name == 'ctg' ) { //ctg=タクソノミー名 echo get_the_term_list($id, 'ctg', '', ', '); //ctg=タクソノミー名 } } add_action('manage_products_posts_custom_column', 'add_custom_column_id', 10, 2); //manage_[カスタム投稿名]_posts_custom_column |