Wordpress > 最新30日の記事件数を取得

新着記事 (2)
みたいなのを作りたいとき

  1. // Create a new filtering function that will add our where clause to the query
  2. function filter_where( $where = '' ) {
  3. // posts in the last 30 days
  4. $where .= " AND post_date > '" . date('Y-m-d', strtotime('-30 days')) . "'";
  5. return $where;
  6. }
  7.  
  8. add_filter( 'posts_where', 'filter_where' );
  9. $query = new WP_Query( $query_string );
  10. remove_filter( 'posts_where', 'filter_where' );
  11.  



最終更新:2012年11月27日 16:56