Code Snippets: Tab Text Filter - rumspeed/simple-side-tab GitHub Wiki
Filter Tab Text examples
Plugin filter: rum_sst_plugin_text_for_tab
Add a Font Awesome Icon to the front of the tab text
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;
}