获取自定义帖子类型的WordPress标签/类别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取自定义帖子类型的WordPress标签/类别相关的知识,希望对你有一定的参考价值。
Returns an html string of taxonomy terms associated with a post and given taxonomy. Terms are linked to their respective term listing pages. This is for when a custom taxonomy is registered for a custom post type.
echo get_the_term_list( $id, $taxonomy, $before, $sep, $after ); // typically echo get_the_term_list( $post->ID, 'video_tag', 'Tags: ', ', ', '.' );
以上是关于获取自定义帖子类型的WordPress标签/类别的主要内容,如果未能解决你的问题,请参考以下文章
从 Wordpress 中自定义帖子类型的类别中获取 ACF 文本字段值