In this article

filter

jetpack_search_terms_{$module}

Filter the search terms for a module Search terms are typically added to the module headers, under “Additional Search Queries”. Use syntax: function jetpack_$module_search_terms( $terms ) { $terms = _x( ‘term 1, term 2’, ‘search terms’, ‘jetpack’ ); return $terms; } add_filter( ‘jetpack_search_terms_$module’, ‘jetpack_$module_search_terms’ );

Parameters

The
string

search terms (comma-separated).

Changelog

How to use this hook

See “How to use actions and filters to customize Jetpack”.