• Resolved checkitdown

    (@checkitdown)


    I have a question in regards to search engines and my website. I was doing a little research, and every time a post from my website shows up on Google, it lists the title of my website and not the title of the post itself.

    If you don’t understand what I’m saying, here’s an example… (https://www.google.com/search?sourceid=navclient-ff&ie=UTF-8&rlz=1B2GGGL_enUS176&q=playing+with+a+big+stack+holdem)
    I’m the first site, and even though my post is called “Playing with a Big Stack”, you can see that – Hold Em Authority…… shows up.

    Does anyone know a line of code (or whatever is necessary ) that could fix this problem so when I click on a single post, the title of the post shows up on the top bar of the browser instead of my site name?

    Thanks a lot, and if you are still confused, browse my site a bit and you’ll see what I’m talking about in reference to the top bar of the browser (it never changes).

    https://www.holdemauthority.com

Viewing 2 replies - 1 through 2 (of 2 total)
  • Your theme is doing that to you. Do you have a header.php in your theme directory? (or wherever the <head> stuff is in your theme). Find what you currently have for

    <title> .... </title>

    and try something like this instead:

    <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> &raquo; Blog Archive <?php } ?> <?php wp_title(); ?></title>

    Thread Starter checkitdown

    (@checkitdown)

    Thanks a lot – this helps a ton!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Post Title Question’ is closed to new replies.