Skip to content

Instantly share code, notes, and snippets.

@danielbachhuber
Created September 14, 2013 01:09
Show Gist options
  • Save danielbachhuber/6557916 to your computer and use it in GitHub Desktop.
Save danielbachhuber/6557916 to your computer and use it in GitHub Desktop.
Paginated RSS feeds. WordPress, I wish I didn't have to do this to you.
<?php
// 'page' sets the page number
add_filter( 'posts_where', function( $where, $query ) {
if ( ! empty( $_GET['page'] ) )
$page = (int)$_GET['page'];
else
$page = 1;
$query->set( 'nopaging', false );
$query->set( 'paged', $page );
return $where;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment