Recent

the_bsearch_term_list filter

the_bsearch_term_list

Filters the post terms for the current post.

Type: filter
Since: 3.0.0
Source: includes/general-template.php line 806

Parameters

TypeNameDescription
string$outputThe post term list.
int|\WP_Post$postWP_Post object.
array$argsArray of arguments.

Usage

add_filter( 'the_bsearch_term_list', function($output, $post, $args) {
    // ...
    return $output;
} );