以下代码位向输出的第一段添加了一个类the_content
:
function first_paragraph($content){
return preg_replace(\'/<p([^>]+)?>/\', \'<p$1 class="intro">\', $content, 1);
}
add_filter(\'the_content\', \'first_paragraph\');
将以上内容添加到主题的功能中。php文件。
然后在CSS中添加如下内容:
p.intro { font-weight:bold; }
我无法为此解决方案申请积分(请参阅
this thread 但是我在WordPress 3.3.2中对它进行了测试,效果非常好。你应该能够根据需要修改它,以针对你内心想要的任何段落。