最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

title - Want to add new label in new post

programmeradmin3浏览0评论

I have 3 different custom post types (news, job, result ,) When I post something new under any of them, I want "new" label or gif for a limited time in title . Am already try that one which am found in old ans... But not working for me

add_filter( 'post_class', function( $classes ) 
{
    if ( is_singular() )
        return $classes;

    // now minus last mod time in seconds
    $diff = time() - mysql2date( 'U', $post->post_date );

    if ( DAY_IN_SECONDS <= $diff ) $classes[] = 'new-post';
        return $classes;
});

Css

.new-post {
    padding-left: 20px;
    background-image: url(new.png) left top no-repeat;
}
发布评论

评论列表(0)

  1. 暂无评论