カスタム投稿の場合、タグはカテゴリーと同じようにタクソノミーの概念って感じ??
newsってカスタム投稿にタグを追加したとして・・・
3 | 'rewrite' => array ( 'slug' => 'example' ), |
4 | 'show_in_rest' => true, |
5 | 'hierarchical' => true, |
7 | register_taxonomy( 'news_tag' , 'news' , $args ); |
管理画面の投稿一覧に出すのは下記のコード
1 | function add_custom_column_news_tag( $defaults ) { |
2 | $defaults [ 'news_tag' ] = 'タグ' ; |
5 | add_filter( 'manage_news_posts_columns' , 'add_custom_column_news_tag' ); |
6 | function add_custom_column_id_news_tag( $column_name , $id ) { |
7 | if ( $column_name == 'news_tag' ) { |
8 | if ( $terms = get_the_terms( $post ->ID, 'news_tag' )) { |
9 | foreach ( $terms as $term ) { |
10 | echo '' . $term ->name. '' ; |
15 | add_action( 'manage_news_posts_custom_column' , 'add_custom_column_id_news_tag' , 10, 2); |