Recent

the_bsearch_term_listfilter

the_bsearch_term_list

Filters the post terms for the current post.

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

Parameters

Type Name Description
string $output The post term list.
int|\WP_Post $post WP_Post object.
array $args Array of arguments.

Usage

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