カスタム投稿にタグを追加する

カスタム投稿にタグを追加するメモ

 

/* ここから */
register_taxonomy(
‘event_tag’, /* タクソノミーの名前 */
‘event’,
array(
‘hierarchical’ => false, //タグタイプの指定(階層をもたない)
‘update_count_callback’ => ‘_update_post_term_count’,
//ダッシュボードに表示させる名前
‘label’ => ‘イベントのタグ’,
‘public’ => true,
‘has_archive’ => true, /* アーカイブページを持つ */
‘show_ui’ => true
)
);
/* ここまでを追加 */
<?php echo get_the_term_list($post->ID,'info_tag','',' | '); ?>
<?php echo get_the_term_list($post->ID, info_tag, '<ul class="tag_archive><li>', '</li><li>', '</li></ul>'); ?>

wordpressのカスタム投稿でタグとカテゴリーアーカイブを作成する方法