如何在PHP代码中添加字体真棒

时间:2016-12-17 21:09:50

标签: php css

我正在使用以下php代码行

$author = apply_filters( 'display_posts_shortcode_author', ' <span class="author">| ' . get_the_author() . ' | Comments: ' . get_comments_number() . '</span>', $original_atts );

我正在修改一个wordpress插件,当被调用时,此行输出帖子的作者和评论计数。我想在| Comments:部分之后添加字体真棒评论气泡(fa-comment&#34; \ f075&#34;)。

我该怎么做?

仅供参考我是php的完整菜鸟。

2 个答案:

答案 0 :(得分:1)

该图标的html为:

<i class="fa fa-comment" aria-hidden="true"></i>

你可以将它添加到你喜欢的PHP代码中:

$author = apply_filters( 'display_posts_shortcode_author', ' <span class="author">| ' . get_the_author() . ' | Comments: <i class="fa fa-comment" aria-hidden="true"></i>' . get_comments_number() . '</span>', $original_atts );

答案 1 :(得分:0)

您可以使用其HTML代码直接添加它。