Limit number of posts on home/front page ONLY
-
I’d like to limit the number of posts on my home page to 2, but have the archives, categories, pagination pages all set to 10.
Is there a way to do this within functions.php? That way if I change my mind I can just edit the numbers inside of functions.php file. It looks like something like this that I found in another theme’s support forum, but it doesn’t work in astra.
function theme_custom_post_limit( $limit, $query ) { if ( $query->is_main_query() && $query->is_home() ){ return 'LIMIT 0'; } return $limit; } add_filter( 'post_limits', 'theme_custom_post_limit', 10, 2 );
Cheers,
LoriThe page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Limit number of posts on home/front page ONLY’ is closed to new replies.