Recent

get_bsearch_term_listfilter

get_bsearch_term_list

Filters the post terms for the current post.

Type: filter
Since: 3.3.0
Source: includes/general-template.php line 999

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( 'get_bsearch_term_list', function($output, $post, $args) {
    // ...
    return $output;
} );