我正在尝试在“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>— <?php the_title(); ?></cite>
</blockquote>
因此,如果我尝试使用the_title('','html_code'),它会附加所需的html。基本上,我想以“the_ttent()”的方式将html追加到“the_content()”。我希望澄清它。
答案 0 :(得分:0)
您可能想尝试转义那里的双引号:
<?php the_content('', '<i class=\"fa fa-quote-right\"></i>'); ?>