Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save marcolopezs/3646142c74ca49c10059ce2a29587b6c to your computer and use it in GitHub Desktop.

Select an option

Save marcolopezs/3646142c74ca49c10059ce2a29587b6c to your computer and use it in GitHub Desktop.
change_url_googles_ssb.php
<?php
/********* DO NOT COPY THE PARTS ABOVE THIS LINE *********/
/**
* Changes the URL used for the Google Sitelink Search Box functionality in WordPress SEO (Premium)
* The returned string must always include {search_term} to indicate where the search term should be used.
*
* @returns string new searchURL
*/
function yoast_change_ssb_search() {
return 'http://mysite.com/?search={search_term_string}';
}
add_filter('wpseo_json_ld_search_url', 'yoast_change_ssb_search' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment