wpseo_json_ld_search_url
Filter: wpseo_json_ld_search_url Allows filtering of the search URL for Yoast SEO.
Использование
add_filter( 'wpseo_json_ld_search_url', 'wp_kama_wpseo_json_ld_search_url_filter' );
/**
* Function for `wpseo_json_ld_search_url` filter-hook.
*
* @param string $search_url The search URL for this site with a `{search_term_string}` variable.
*
* @return string
*/
function wp_kama_wpseo_json_ld_search_url_filter( $search_url ){
// filter...
return $search_url;
}
- $search_url(строка)
- The search URL for this site with a
{search_term_string}variable.
Где вызывается хук
wpseo_json_ld_search_url
yoast/src/generators/schema/website.php 85
$search_url = \apply_filters( 'wpseo_json_ld_search_url', $this->context->site_url . '?s={search_term_string}' );