在the_content()wordpress之后的html

时间:2017-08-13 23:53:43

标签: php wordpress custom-post-type advanced-custom-fields

我正在尝试在“the_content”之后添加一个图标。下面适用于the_title(),但它不适用于the_content()。有谁知道我怎么能做到这一点?

<blockquote><?php the_content('', '<i class="fa fa-quote-right"></i>'); ?> <--- This is what I'm trying to figure out.
     <cite>&mdash; <?php the_title(); ?></cite>
</blockquote>

因此,如果我尝试使用the_title('','html_code'),它会附加所需的html。基本上,我想以“the_ttent()”的方式将html追加到“the_content()”。我希望澄清它。

1 个答案:

答案 0 :(得分:0)

您可能想尝试转义那里的双引号:

<?php the_content('', '<i class=\"fa fa-quote-right\"></i>'); ?>