我想展示一下我的最新帖子。

时间:2020-05-13 作者:Noah Rasmussen

enter image description here你好

有没有人知道一个插件或一种方式来显示最新的,而不是2。和3。最新帖子。

1 个回复
最合适的回答,由SO网友:Yash Tiwari 整理而成

尝试以下代码:它将显示第二和第三个最新帖子。

$the_query = new WP_Query(array( \'post_type\' => \'post\',
\'post_status\' => \'publish\',
\'order\' => \'DESC\',
\'posts_per_page\' =>\'2\',
\'offset\' => 1
));


if ( $the_query->have_posts() ) : 
   while ( $the_query->have_posts() ) : $the_query->the_post(); 

     the_title(); 
     the_excerpt();

   endwhile; 
  wp_reset_postdata(); 

else : 
     __(\'No post found\');
endif;  

相关推荐

在多站点中根据blog_id分配备用单-{cpt}模板

我有一个多站点网络,其中有一些共享的自定义帖子类型,我正在尝试创建一个加载自定义帖子的函数single-{cpt} 给定帖子类型的模板$blog_id 如果已定义,则返回默认值single- 样板在这种情况下,自定义帖子类型为resource, 默认为single-resource.php 我正在设置一个变量$custom_resource_single 适用的模板文件名,如下所示:if ($blog_id == 5) { $custom_resource_single = \'single