我正在编辑 21 个主题,但我想更改类别,以便它们将图标显示为 @fontface 图标而不是单词。
类别需要看起来像这样(以艺术类别为例):
<a href="THELINKINHERE" rel="category" title="View all categories in Art"><i class="icon-brush"></i></a>
然而,这就是它目前的样子。
<span class="entry-utility-prep entry-utility-prep-cat-links">Posted in</span><a href="THELINKINHERE" rel="category" title="View all categories in Art">Art</a>
这是我目前的代码:
<?php $show_sep = false; ?>
<?php if ( 'post' == get_post_type() ) : // Hide category and tag text for pages on Search ?>
<?php
/* translators: used between list items, there is a space after the comma */
$categories_list = get_the_category_list( __( ', ', 'twentyeleven' ) );
if ( $categories_list ):
?>
<span class="cat-links">
<?php printf( __( '<span class="%1$s">Posted in</span> %2$s', 'twentyeleven' ), 'entry-utility-prep entry-utility-prep-cat-links', $categories_list );
$show_sep = true; ?>
</span>
<?php endif;?>
<?php endif; // End if categories ?>
该类需要根据设置的帖子类别进行更改有没有办法手动设置哪些图标链接到哪个类别?
您可以在此处查看我的实时模板http://mhutchinson.me.uk/ 感谢您的帮助!
梅根