Created
July 31, 2016 05:25
-
-
Save jimmitchell/90ceefadaf63d29c133a4b7b4ae63f66 to your computer and use it in GitHub Desktop.
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
<?php | |
// Change the page title separator. | |
// change "slug" to your theme's domain | |
function slug_document_title_separator( $sep ) { | |
$sep = ":"; | |
return $sep; | |
} | |
add_filter( 'document_title_separator', 'slug_document_title_separator' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment