我尝试使用WP Hooks来构建迷你主题,但是" color"属性没有用。
<span style="color: #C40000; font-family: 'Roboto', sans-serif; font-size:26px; padding: 5px; line-height: 1; text-decoration: underline; -moz-text-decoration-color: #C40000; text-decoration-color: #C40000;">
<?php echo the_category(''); ?>
</span>
答案 0 :(得分:0)
使用您的类别样式添加到您的css文件类
.category-style{
color: #C40000;
font-family: 'Roboto', sans-serif;
font-size:26px;
padding: 5px;
line-height: 1;
text-decoration: underline;
-moz-text-decoration-color: #C40000;
text-decoration-color: #C40000;
}
接下来创建过滤器,您可以将其放在functions.php
中<?php
add_filter( 'the_category','category_style', 10, 3 );
function category_style( $thelist, $separator, $parents ){
$class_to_add = 'category-style';
return str_replace( '<a href="', '<a class="' . $class_to_add . '" href="', $thelist );
}
?>
并在文件中显示最后一个显示类别。
<?php echo the_category(''); ?>