how to insert today's date automatically in post title

Discussion in 'HTML & Website Design' started by 12k456, Dec 20, 2015.

  1. #1
    i have a website based on wordpress.... i want to add today's date automatically in post title.... example you can search on google lenovo k3 note price in india and you will see that many sites has added date which is latest
     
    12k456, Dec 20, 2015 IP
  2. Ayaz Ahmed

    Ayaz Ahmed Greenhorn

    Messages:
    3
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    21
    #2
    You can add a function to append DATE with Post Title.

    function append_date ( $title ) {
    .....
    return $title;
    }
    add_filter( 'the_title', 'append_date');
     
    Ayaz Ahmed, Dec 20, 2015 IP