admin管理员组文章数量:1289508
I want to show font awesome icon (installed) on the left side of the WordPress widget title. I found this shortcode that should do the work.
add_filter( 'widget_title', 'do_shortcode' );
add_shortcode( 'icon', 'shortcode_fa' );
function shortcode_fa($attr, $content ) {
return '<i class="fa fa-'. $content . '"></i>';
}
After adding this in functions.php
, I should be able to add a gear icon in the widget title with below code from Appearence>Widget
[icon]cog[icon]
But it is not working.
I want to show font awesome icon (installed) on the left side of the WordPress widget title. I found this shortcode that should do the work.
add_filter( 'widget_title', 'do_shortcode' );
add_shortcode( 'icon', 'shortcode_fa' );
function shortcode_fa($attr, $content ) {
return '<i class="fa fa-'. $content . '"></i>';
}
After adding this in functions.php
, I should be able to add a gear icon in the widget title with below code from Appearence>Widget
[icon]cog[icon]
But it is not working.
Share Improve this question edited Nov 20, 2016 at 13:43 cjbj 15k16 gold badges42 silver badges89 bronze badges asked Nov 20, 2016 at 12:10 Sahriar SaikatSahriar Saikat 1662 silver badges16 bronze badges2 Answers
Reset to default 3I checked your code in my install. It works, except that you made a typo (missing backslash):
[icon]cog[/icon]
Few notes:
You must make sure to enqueue the Font Awsesome stylesheet.
You must close the shortcode, like:
[icon]cog[/icon]
Remember to escape the class name with
esc_attr()
.Another shortcode idea:
[fa icon="cog"]
Full working code here!
Add this to functions.php
:
add_filter( 'widget_title', 'do_shortcode' );
add_shortcode( 'fa', 'shortcode_fa' );
function shortcode_fa($attr, $content ) {
$icon = $attr['icon'];
return "<i class='fa fa-$icon'></i>";
}
Add shortcode to widget title:
[fa icon=copyright] Widget title text
Result:
本文标签: phpHow to add Shortcode (font awesome) in widget title
版权声明:本文标题:php - How to add Shortcode (font awesome) in widget title? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741441116a2378926.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论