Recent

the_bsearch_post_thumbnail filter

the_bsearch_post_thumbnail

Filter the thumbnail.

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

Parameters

TypeNameDescription
string$outputThumbnail HTML.
string|int[]$sizeImage size. Accepts any registered image size name, or an array of
array$argsArray of arguments.

Usage

add_filter( 'the_bsearch_post_thumbnail', function($output, $size, $args) {
    // ...
    return $output;
} );