AI Search
Classic Search
Notifications
Clear all
How-to and Troubleshooting - wpForo 2.0
5
Posts
4
Users
0
Reactions
1,703
Views
Jun 10, 2019 8:03 am
How to change the SEO separator from "–" to something else?
4 Replies
Jun 10, 2019 2:54 pm
Hi info100123,
I've already asked developers this question and I'm waiting for the response from them. I'll update the topic once I get some news for you.
Jun 10, 2019 3:25 pm
You can do it with a code snippet in your theme functions file (or better yet run through the snippets plugin)
Change the "|" separator to the one you prefer.
add_filter( 'document_title_separator', 'wpf_document_title_separator' );
function wpf_document_title_separator( $sep ) {
$sep = "|";
return $sep;
}
Jun 10, 2019 5:46 pm
I would like to add here that the so-called "SEO" separator (-| or whatever) is an old SEO myth. There is no reason to do that.