Created
September 12, 2018 23:40
-
-
Save rickslayer/6fd8b1f79e1d9c5d8de601b36ad8f25c to your computer and use it in GitHub Desktop.
Change the separator title site Wordpress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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