我是wordpress的新手。我已经为自定义分类法创建了自定义帖子类型附加工作正常,并且还创建了自定义分类模板 taxonomy-medispa.php(Taxonomy - medispa)。
在此模板左侧列出了与链接相关联的子分类(medispa)子项。在右侧有一些静态内容regd(分类:medispa)。
现在条件是我点击左侧的分类术语链接列出相应的帖子到术语链接,否则显示静态内容。
目前,当点击父链接(medispa)及其术语链接时,都会列出相应的帖子。
我需要点击显示帖子的术语链接,但点击父分类(medispa)显示静态内容。
<?php
//start by fetching the terms for the medispa taxonomy
$terms = get_terms( 'medispa', array(
'orderby' => 'id',
'hide_empty' => 0
));
echo '<ul>';
foreach($terms as $term)
{
if($term->parent !=0)
{
echo '<a href="'.get_term_link((int)$term->term_id, $term->taxonomy).'"><li>'.$term->name.'</li>
</a>';
}
}
echo '</ul>';
?>
<?php /* The loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php //get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>