Recent

bsearch_heatmap_title filter

bsearch_heatmap_title

Filter the value of the title tag of heatmap links.

Type: filter
Since: 2.5.0
Source: includes/heatmap.php line 299

Parameters

TypeNameDescription
string$titleValue of the title tag of the link.
string$searchvarSearch term.
int$countCount.
object$resultSearch results object.

Usage

add_filter( 'bsearch_heatmap_title', function($title, $searchvar, $count, $result) {
    // ...
    return $title;
} );