php 获取自定义分类名称查询帖子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 获取自定义分类名称查询帖子相关的知识,希望对你有一定的参考价值。
<?php
// get custom taxonomy name
$terms = get_the_terms( $post->ID , 'your taxonomy name' );
foreach ( $terms as $term ) {
$term_link = get_term_link( $term, 'your taxonomy name' );
if( is_wp_error( $term_link ) )
continue;
echo '<a href="' . $term_link . '">' . $term->name . '</a>';
}
?>
以上是关于php 获取自定义分类名称查询帖子的主要内容,如果未能解决你的问题,请参考以下文章
Gatsby:在自定义帖子类型上使用 GraphQL 查询和自定义分类
无法获取自定义分类存档页面以显示帖子
如何获取自定义帖子类型的分类值
查询ACF在自定义分类模板中的WP_Query期间发布对象
Wordpress 按税收条款获取帖子-税收条款是页面蛞蝓
php 在自定义帖子类型中显示所有自定义分类中的所有帖子。