Skip to content

Instantly share code, notes, and snippets.

@jdevalk
Created October 1, 2014 09:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jdevalk/0b2ddd13d27cf869a976 to your computer and use it in GitHub Desktop.
Save jdevalk/0b2ddd13d27cf869a976 to your computer and use it in GitHub Desktop.
Change WP SEO JSON+LD search URL from ?s= to /search/
<?php
/**
* Changes the search slug to /search/ for the JSON+LD output
*/
function yst_change_json_ld_search_url() {
return trailingslashit( home_url() ) . 'search/{search_term}';
}
add_filter( 'wpseo_json_ld_search_url', 'yst_change_json_ld_search_url' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment