• Hi,
    my website’s page/site titles look like this: “Website Name | Some SEO Title”
    But I would like them to look like this: “Some SEO Title | Website Name”
    I am using Yoast’s SEO Plugin, but I have no idea how to configure the title structure above.
    Any help is greatly appreciated, thanks in advance!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Not sure about the plugin, but putting something like the following code in header.php might work

    <title><?php
    wp_title('|', true, 'right'); // Show page title with a pipe separator to the right
    bloginfo('name'); // Add the blog/website name.
    ?></title>

    However, if you are not comfortable with editing theme files it might be advisable to look into Child Themes as somewhere to start.

    Thread Starter JohnDiLaurie

    (@johndilaurie)

    Editing the titles of my pages manually seems like too much work to me.

    But it seems like WordPress is doing this kind of title structure by default, so does anyone know whereof how to edit this particular setting?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Move Site Title to End of Page Title?’ is closed to new replies.