How to add in title a date but with other color, like in iMDb titles?

Is there a way to add in title a date but with another color, like in iMDb titles?

Like in this title (click on it): http://www.imdb.com/title/tt1606378/

Read More

To be more clear, see this picture

The result is this:see this picture

Thanks!

Related posts

Leave a Reply

1 comment

  1. add this code in functions.php file

    add_filter( 'the_title', 'ta_modified_post_title');
    function ta_modified_post_title ($title) {
        global $post;   
        $mynewdate = strtotime($post->post_date); 
        $title = $title.'<span class="modified">'.date('Y',$mynewdate).'</span>'.'-<span class="modified">'.date('d',$mynewdate).'</span>-'.'<span class="modified">'.date('m',$mynewdate).'</span>';
      return $title;
    }
    

    modify date by your own way.