php Wordpress - 以逗号分隔的帖子术语列表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Wordpress - 以逗号分隔的帖子术语列表相关的知识,希望对你有一定的参考价值。
<div class="project-cats">
<h3>Categories</h3>
<?php
$project_terms = get_the_terms( get_the_ID(), 'project-category' );
// Make sure we have terms and also check for WP_Error object
if ( $project_terms
&& !is_wp_error( $project_terms )
) {
@usort( $project_terms, function ( $a, $b )
{
return strcasecmp(
$a->slug,
$b->slug
);
});
// Display your terms as normal
$term_list = [];
foreach ( $project_terms as $term )
//$term_list[] = esc_html( $term->name );
$term_list[] = '<a href="' . get_term_link( $term ) . '">' . esc_html( $term->name ) . '</a>';
echo implode( ', ', $term_list );
}
?>
</div>
以上是关于php Wordpress - 以逗号分隔的帖子术语列表的主要内容,如果未能解决你的问题,请参考以下文章
PHP Wordpress:逗号分隔的分类术语列表
PHP mysql - 以表格形式显示数据库中的逗号分隔值
php fgetcsv() 行以逗号分隔符结尾
PHP 从wordpress外面拉出帖子(以正确的方式!)
php Wordpress - 添加过期帖子状态和Cron任务以在X天后过期
php Wordpress - 添加过期帖子状态和Cron任务以在X天后过期