Skip to content

Instantly share code, notes, and snippets.

@devfaysal
Created November 24, 2018 09:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devfaysal/d71f7783f7f8315012a8966c7b8fb2aa to your computer and use it in GitHub Desktop.
Save devfaysal/d71f7783f7f8315012a8966c7b8fb2aa to your computer and use it in GitHub Desktop.
function custom_title($title_parts) {
if ( is_search() ) {
$title_parts['title'] = get_search_query();
}
return $title_parts;
}
add_filter( 'document_title_parts', 'custom_title' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment