我正在玩WordPress并试图了解它能做什么,不能做什么。我试图在index.php文件中将字体颜色从黑色更改为白色。
我可以改变the_title()的背景颜色,但有效但改变the_content()的颜色似乎不起作用。
我尝试使用谷歌搜索,但是如果有人知道一个我能阅读的好页面,我会非常感激地找到了很多关于使用CSS的帮助。
这是代码(请原谅格式化):
<?php if (have_posts()) : while ( have_posts() ) : the_post();?>
<p style="color:white"><?php the_title(); ?></p>
<p style="color:white"><?php the_content(); ?></p>
<?php endwhile;
else : ?>
<p>Sorry no posts matched your criteria.</p>
<?php endif;?>
答案 0 :(得分:0)
帖子的内容为html
,其中包含许多elements
,例如h2
,h3
,p
,a
。
因此,如果您想将css应用于其子标记:
<div style="color:white"><?php the_content(); ?></div>