显示WP中的所有类别,并以粗体显示

时间:2017-07-28 09:09:39

标签: wordpress

我想在内容底部显示我的Wordpress中存在的所有类别,并以粗体显示当前帖子的选中,如下所示。 例如,对于现有帖子,我选择了3个现有的第2类。

category1 category2 category3

我该怎么做?

我的代码(现在只显示所选类别):

<div class="entry-meta">
<span class="term-links">
<?php foreach ( get_the_terms( $post->ID, 'category') as $term ) : 
?>
<a href="<?php echo esc_url( get_term_link( $term->term_id ) ) 
?>"><span class="<?php echo $term->slug ?>"><?php echo $term->name ?>
</span></a>
<?php endforeach; ?>
</span>

<style>
.term-links .category2 {
display: inline-block;
font-weight:bold;
</style>

1 个答案:

答案 0 :(得分:0)

所有类别的列表

在模板中添加以下代码

a=np.zeros((2,6),dtype=np.float32)
>>> a
array([[ 0.,  0.,  0.,  0.,  0.,  0.],
       [ 0.,  0.,  0.,  0.,  0.,  0.]], dtype=float32)
>>> a[:,2]=1
>>> a
array([[ 0.,  0.,  1.,  0.,  0.,  0.],
       [ 0.,  0.,  1.,  0.,  0.,  0.]], dtype=float32)