wordpress title of post

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dfa
    Confirmed User
    • Sep 2006
    • 263

    #1

    wordpress title of post

    im using wordpress.

    i got a question....right now if my page gets indexed it shows up like this on google
    Title of Webpage >> Blog Archive >> Title Of Post

    i want to change it so it only shows the
    Title of the post

    what do i have to change so it can be like that?
    any idea how i can do this?
    =]
  • donborno
    Confirmed User
    • Jan 2007
    • 374

    #2
    Edit the header.php of your theme, change it to something like
    Code:
    <title><?php if (is_home()) {bloginfo('name') ;} else { wp_title(' ');} ?></title>

    Comment

    • dfa
      Confirmed User
      • Sep 2006
      • 263

      #3
      thanks for the help
      =]

      Comment

      Working...