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.