Skip to content

Instantly share code, notes, and snippets.

@Galibri
Last active February 28, 2018 15:25
Show Gist options
  • Save Galibri/e3aaedb7d7b6e8059785c58ada6496fd to your computer and use it in GitHub Desktop.
Save Galibri/e3aaedb7d7b6e8059785c58ada6496fd to your computer and use it in GitHub Desktop.
add_filter( 'pre_get_document_title', function( $title ){
if(is_page('shop')){
return "This is my shop, believe it or not! hahaha.... | " . get_bloginfo('description');
} else {
return $title;
}
}, 999, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment