Skip to content

Instantly share code, notes, and snippets.

@rickslayer
Created September 12, 2018 23:40
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 rickslayer/6fd8b1f79e1d9c5d8de601b36ad8f25c to your computer and use it in GitHub Desktop.
Save rickslayer/6fd8b1f79e1d9c5d8de601b36ad8f25c to your computer and use it in GitHub Desktop.
Change the separator title site Wordpress
// Change the separator title site
// Mudar o separador do título do site
add_filter( 'document_title_separator', 'change_title_separator' );
function change_title_separator() {
return '|';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment