我有一个如下的single.php文件
<?php get_header(); ?>
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
echo '<div">';
the_content();
echo '</div>';
} // end while
} // end if
?>
<?php get_footer(); ?>
现在, 我需要在页面顶部获得”当前自定义帖子类型相关分类法术语”链接, 因此, 如果用户单击链接, 则页面导航至taxonomy.php。
你能让我知道怎么做吗?
谢谢
#1
你可以在循环中使用get_the_term_list来获取相关的分类术语链接:
global $post
$terms = get_the_term_list($post->ID, 'your_taxonomy');
echo $terms;
这对我来说是一个很好的解决方案, 因为我每个职位都只有一个分类术语。
评论前必须登录!
注册