• Resolved grahambg

    (@grahambg)


    Just wodnering how do I replace the pipe (|) with a minus (-) in our websites page titles. It comes up with the title as follows:

    Page title | domain.com

    We would like it to look like

    Page title – domain.com

    We have looked in all the plugins and cannto seem to find it??

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hello grahambg,
    try using following code in function.php:

    add_filter ('document_title_separator', 'set_document_title_seperator', 100 );
    function set_document_title_seperator ($sep) {
     return '-';
    }

    Hope this will help you.
    Thanks

    Thread Starter grahambg

    (@grahambg)

    thank you, that worked!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to Replace Pipe With Minus IN Page Titles?’ is closed to new replies.