Advertisement
Aurangajeb

Change the default WordPress Site separator as colon

Jul 10th, 2021
1,227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. /* Change the default WordPress Site separator as colon - */
  2. add_filter( 'document_title_separator', 'change_site_title_separator_as_colon' );
  3. function change_site_title_separator_as_colon( $sep ) {
  4.  
  5.     $sep = "-";
  6.  
  7.     return $sep;
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement