gpt4 book ai didi

php - 向 PHP Wordpress 添加样式

转载 作者:行者123 更新时间:2023-11-28 05:51:23 26 4
gpt4 key购买 nike

我需要在 Wordpress 中为这段 php 代码添加样式。我该怎么做,我迄今为止尝试的一切都没有奏效。

<?php echo the_field('section_text'); ?>

这是我目前拥有的代码。

<div id="inner-content" class="wrap cf">
<p class="quote-text" style="font-family: 'Josefin Slab', serif; font-size: 1.5em; line-height: 30px; text-align:justify; color:#664422; font-weight:bold; "><?php echo the_field('section_text'); ?></p>
</div>

最佳答案

我假设您使用的是 ACF 插件。在使用 the_field() 时不应使用 echo。试试这个代码。

<div id="inner-content" class="wrap cf">
<p class="quote-text"><?php echo get_the_field('section_text'); ?></p>
</div>

关于php - 向 PHP Wordpress 添加样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37309707/

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