Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 Wordpress 网站有多个自定义类别和帖子类型,所有这些都需要显示在主页 blogroll 上。但我需要主页上的第一个帖子始终是特定类别的最新帖子。
例如,页面顶部的 pst 将始终是最新的“长颈鹿”类别;并在其下方;默认/按时间顺序排序更多的是“海象”与“海鸥”和“玉米片”混合
实现这一目标的最佳方法是什么?
无需通过循环两次,粘性帖子是您的最佳选择。
除此以外:
... $args = array( 'orderby' => 'post_date', 'category'=> 'giraffe', 'numberposts'=> 1, ); $latest_giraffe_post = get_posts( $args ); ...
然后做你已经在做的事情