Skip to content

Instantly share code, notes, and snippets.

@lswilson
Created January 25, 2013 18:36
Show Gist options
  • Save lswilson/4636773 to your computer and use it in GitHub Desktop.
Save lswilson/4636773 to your computer and use it in GitHub Desktop.
Returns 10 older posts
function filter_where($where = '') {
$where .= " AND post_date < '" . date('Y-m-d') . "'";
return $where;
}
// Register the filtering function
add_filter('posts_where', 'filter_where');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment