Quantcast
Channel: bbPress.org » All Posts
Viewing all articles
Browse latest Browse all 3638

Reply To: change css class of function with filter hook

$
0
0

the ‘,2’ might be the issue, as you only then use 1, but try this

function custom_callback($args) {
    
        $args['select_class'] = 'my-class' ;
            
       return  $args;

}
add_filter( 'bbp_get_form_topic_status_dropdown', 'custom_callback');

Viewing all articles
Browse latest Browse all 3638

Trending Articles