Icons in titles
-
Hello,
i’ve added this little snippet code to my functions.php file, in order to add some fontawesome icons in widget titles :add_filter( 'widget_title', 'do_shortcode' ); add_shortcode( 'fa', 'so_shortcode_fa' ); function so_shortcode_fa( $attr, $content ) { return '<i class="fa fa-'. $content . '"></i>'; }
working so far in normal widget area, but not with the widgets in the wit area, can you provide some help please to make it working ?
Sorry for my bag english…
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Icons in titles’ is closed to new replies.