How to Set Wordpress Post Title ?

Discussion in 'WordPress' started by downloadingshop, Mar 2, 2011.

  1. #1
    How to Set Wordpress Post Title Format not use blog name in every single post only show post name
    Please Give me Code For Manually
     
    downloadingshop, Mar 2, 2011 IP
  2. hueyramone

    hueyramone Active Member

    Messages:
    233
    Likes Received:
    3
    Best Answers:
    1
    Trophy Points:
    70
    #2
    you must go into wp-admin.. it's very simple
     
    hueyramone, Mar 2, 2011 IP
  3. mohsinpatel

    mohsinpatel Peon

    Messages:
    26
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    You can set in header.php like this way


    <?php if(is_home()) {?>

    <h1>Your Blog Title </h1>

    <?php } else {?>

    //If you want to remove blog title remove below line
    //I think in single pages try to keep blogtitle in <h3> tag so, that will be better

    <h3>Your Blog Title</h3>

    <?php }?>


    Thanks,
     
    mohsinpatel, Mar 3, 2011 IP