Hi there!
Is it possible to limit the number of posts per page AND disable pagination at the same time? Simply removing the paging links is not enough: the additional pages (page2, 3 etc.) would still exist – and the readers of this particular site will most likely be just the kind to try ridiculous hacks like typing ‘/page2’ after the url. So, there must not be a page 2!
To make this yet a bit more complex: I would like to do this only on the front page and keep the pagination on archive pages (search results, category archives, and so forth).
This would have been a whole lot easier to sort out with a theme with no paging options to start with, but I just love Pinboard and am not giving it up, goddammit!
Thanks.
The easiest thing to do is to set the post per page option to some improbable value like 9999, thins would however also affect archive pages as well.
You can also hack into the function pinboard_filter_query() and add this condition:
if( $query->is_home() )
$query->set( 'posts_per_page', 9999 );