Recent

the_bsearch_permalink filter

Filters the display of the permalink for the current post.

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

Parameters

TypeNameDescription
string$permalinkThe permalink for the current post.
int|WP_Post$postWP_Post object.
array$query_argsAdditional query arguments to add to the permalink.

Usage

add_filter( 'the_bsearch_permalink', function($permalink, $post, $query_args) {
    // ...
    return $permalink;
} );