Skip to content

Code Snippets: Tab Class Filter

Scot Rumery edited this page Jan 31, 2023 · 1 revision

Filter Tab Text examples

Plugin filter: rum_sst_plugin_class_for_tab

Apply filter for the tab class

// filter the tab class from the Simple Side Tab plugin
add_filter( 'rum_sst_plugin_class_for_tab', 'rum_sst_tab_class_filter_example_1', 10 , 1 ); 
function rum_sst_tab_class_filter_example_1( $class ) {

    $class = $class . ' new-css-class';

    return $class;
}

Clone this wiki locally