gpt4 book ai didi

php - 更改 wordpress the_content() 帖子的字体颜色

转载 作者:行者123 更新时间:2023-11-28 02:20:08 25 4
gpt4 key购买 nike

我正在尝试使用 WordPress 并尝试了解它能做什么和不能做什么。我正在尝试将 index.php 文件中的字体颜色从黑色更改为白色。

我可以更改 the_title() 的背景颜色,这行得通,但更改 the_content() 的颜色似乎不起作用。

我试过谷歌搜索,但没有找到太多关于将 CSS 与 PHP 结合使用的帮助,如果有人知道我可以阅读的好页面,将不胜感激。

这是代码(请原谅格式化):

<?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;?>

最佳答案

帖子的内容是html,它包含许多元素,例如h2h3 pa。所以如果你想将 css 应用到它的子标签中:

<div style="color:white"><?php the_content(); ?></div>

关于php - 更改 wordpress the_content() 帖子的字体颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48256753/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com