我正在使用wordpress,并且正在打h3类。我希望在条件上使用较小的字体,但是我想使用相同的类,因为我使用的是Google字体,并且它可以识别该类名称。是否可以在类声明中更改字体大小?谢谢。
$title = get_the_title(get_the_ID());
if(strlen($title) > 51){
//Want smaller font size for this one!
the_title('<h3 class="entry-title">', '</h3><br/>' );
}else{
the_title('<h3 class="entry-title">', '</h3><br/>' );
}
}?>
答案 0 :(得分:1)
虽然您想要同一个类,然后在h3tag中使用style属性,因为内联样式已经超越了外部样式
$title = get_the_title(get_the_ID());
if(strlen($title) > 51){
//Want smaller font size for this one!
the_title('<h3 class="entry-title" style="font- size:smaller;">', '</h3><br/>' );
}else{
the_title('<h3 class="entry-title">', '</h3><br/>' );
}
}?>