Last active
August 30, 2017 20:20
-
-
Save heanfig/d0ff31c710183299d7000d162ea83f19 to your computer and use it in GitHub Desktop.
Remove separator
This file contains hidden or 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
add_filter( 'document_title_separator', 'cyb_document_title_separator' ); | |
function cyb_document_title_separator( $sep ) { | |
$sep = "-"; | |
return $sep; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment