Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wecodelaravel/e61f9304b546d83dfe2d836375a42b4b to your computer and use it in GitHub Desktop.
Save wecodelaravel/e61f9304b546d83dfe2d836375a42b4b 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