カスタムカテゴリリストを表示するプラグインを作成しようとしていて、使用しています
function page_template( $template )
{
if ( get_post_type( get_the_ID() ) == 'gallery' ) {
$template = plugin_dir_path(__FILE__) . '/custom-page-template.php';
}
return $template;
}
add_filter( 'template_include', 'page_template' );
and is working good, now i get the url from each category using
<?php
$value = term_exists( 'category', 'taxonomy' ); // array is returned if taxonomy is given
if(isset($value)){?>
<a href="<?php echo get_term_link( 'category', taxonomy ) ?>" > Blepharoplasty</a>
<?php } ?>
あまりにもうまく機能しています。get_term_link() で取得した URL をクリックしたときに、新しいテンプレートを追加する方法を知る必要があります。
ありがとう