如何在标题中添加日期,但使用其他颜色,如IMDb标题?

时间:2012-10-30 作者:Blanka

有没有办法在标题中添加日期,但使用其他颜色,如iMDb标题?

与此标题类似(单击):http://www.imdb.com/title/tt1606378/

To be more clear, see this picture

The result is this:see this picture

谢谢

1 个回复
SO网友:dipali

在函数中添加此代码。php文件

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;
}
按自己的方式修改日期。

结束

相关推荐

Can't open scheduled posts

在我的网站主页上,我通过以下方式检索已发布和预定的帖子:<?php global $post; $args = array(\'numberposts\' => \'3\', \'category\' => $category, \'post_status\' => array(\'publish\', \'future\' )); $myposts = get_posts($args); 它工作正常,但如果我没有以管理员身份登录,我就无法访问整