因此,我在 WordPress 中为我的网站提供了以下代码。例如,在它显示当前页面的标题下,我的是“宝贝”(黑色)。所以我想为每个标题有一个唯一的类或 ID(所以我可以为每个标题使用不同的颜色,而不是全部为黑色),但由于它们是由 PHP 生成的,我不知道如何实现这一点。如果它是一个纯 HTML,我可以给它一个类和样式,但现在我没有任何独特的类。
<?php get_header(); ?>
<div class="primary-content">
<?php
// display taxonomy info
themedsgn_biancca_taxonomy_info();
// initiate the blogroll type
$blogroll_type = get_theme_mod( 'themedsgn_setting_archive_layout', 'grid' );
if( have_posts() ) {
echo '<div class="blogroll blogroll-' . $blogroll_type . ' cf">';
while( have_posts() ) {
the_post();
get_template_part( 'content', $blogroll_type );
}
echo '</div>';
// pagination
themedsgn_biancca_post_pagination();
} else {
get_template_part( 'content', 'none' );
}
?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>