We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Plugin filter: rum_sst_plugin_text_for_tab
rum_sst_plugin_text_for_tab
NOTE: assuming Font Awesome is supported with your theme
// filter the tab output to add a FontAwesome icon before the tab text add_filter( 'rum_sst_plugin_text_for_tab', 'rum_sst_tab_text_filter_example_1', 10 , 1 ); function rum_sst_tab_text_filter_example_1( $text ) { $text = '<i class="fa fa-life-ring"></i> ' . $text; return $text; }