Wordpres,查询最新帖子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpres,查询最新帖子相关的知识,希望对你有一定的参考价值。
$queries = $wpdb->get_results("SELECT ID, post_date FROM $wpdb->posts WHERE post_type='post' ORDER BY post_date DESC LIMIT 1 "); $date = $queries[0]->post_date;global $post; $post = get_post($post); $time = $post->post_date; if($date == $time) { echo "<img class='ico-new' src='"; bloginfo('template_url'); echo "/images/new.png' alt='' border='0' />"; }?>
以上是关于Wordpres,查询最新帖子的主要内容,如果未能解决你的问题,请参考以下文章
Django ORM:在不执行 N+1 查询的情况下检索帖子和最新评论