Hello,
I try to make a custom pagination work.
I put this in my functions.php
function pagination_april( $query ) {
if ( $query->monthnum=04&year=2005 ) {
$query = new WP_Query( 'posts_per_page=1' );
}
}
add_action( 'pre_get_posts', 'pagination_april' );
But it won't work.
Can anyone tell me what went wrong here.
Roelof