0
A
回答
3
有,說明如何從過去30天內列出的職位上抄本一個例子: http://codex.wordpress.org/Class_Reference/WP_Query#Time_Parameters
你要適應它,以滿足您的需求,例如(未測試):
// Create a new filtering function that will add our where clause to the query
function filter_where($where = '') {
$where .= " AND post_date > '" . date('Y-m-d', strtotime('-1 year')) . "'";
return $where;
}
add_filter('posts_where', 'filter_where');
$query = new WP_Query($query_string);
remove_filter('posts_where', 'filter_where');
-1
<?php
$date1yrback = date('Y-m-d',strtotime(date("Y-m-d", mktime()) . " - 365 day")); // Find Date 1 year back
$countp = 0;
if (have_posts()) : while (have_posts()) : the_post();
$my_date = the_date('Y-m-d', FALSE); //Find Post Date
if($my_date > $date1yrback) //Check if Post date is greater than date year back
{
echo "<h1>".the_title()."</h2>";
echo "<p>".the_content()."</p>";
$countp++; //Increment counter as post in above criteria is found
}
endwhile; endif;
if($countp == 0)
{
?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php
}
?>
相關問題
- 1. WP查詢分類帖子
- 2. 在WP中獲取帖子ID查詢
- 3. 僅在WordPress中查詢粘性帖子
- 4. (WP)如何列出自定義帖子類型中的所有帖子?
- 5. SOLR - 僅查詢特定字段
- 6. minimongo僅查詢特定字段
- 7. WP查詢自定義帖子類型或類別
- 8. wordpress - WP查詢自定義類型/稅不顯示帖子
- 9. 自定義帖子類型「property」(wp-property plugin)查詢問題
- 10. 如何在查詢中只顯示特定數量的帖子?
- 11. 在查詢中列出特定數據
- 12. WordPress的SQL查詢幫助(列出來自特定類別的帖子)
- 13. MongoDB:僅查詢特定子文檔
- 14. 無法查看WP主頁中的自定義帖子類型帖子
- 15. 查詢帖子自定義字段:ACF中繼器內的檢查列表
- 16. 在wordpress中查詢帖子
- 17. 在Wp-admin中的帖子頁面中獲取帖子ID
- 18. 如何僅在使用ActiveRecord查詢時選擇特定列?
- 19. WP-API在特定日期後獲取帖子
- 20. 查詢特定類別中的所有帖子
- 21. 僅返回Sharepoint 2010中REST查詢中的特定字段
- 22. 基於wordpress中的自定義字段查詢帖子
- 23. 由帖子類型的自定義字段的wordpress查詢帖子
- 24. 多值查詢自定義字段WP
- 25. wp類別顯示所有類別的所有帖子,而不是來自特定類別的特定帖子
- 26. WP Alchemy Meta Box - 獲取特定帖子的Meta Box值
- 27. 排除從WP-飼料特定的帖子
- 28. 通過WP Rest API創建自定義字段的帖子
- 29. 在特定時間發佈帖子php
- 30. 查詢查找帖子沒有自定義字段
你不需要的插件,看看這裏:http://codex.wordpress.org/Class_Reference/WP_Query#Time_Parameters – soju
感謝這個作品 – Krunal