lmartins
11/12/2014 - 9:07 AM

Change the limit of posts per page in search results

Change the limit of posts per page in search results

/**
 * Change the limit of posts per page in
 * Search results
 */

function limit_posts_per_archive_page() {
	if ( is_search() )
		set_query_var('posts_per_archive_page', 15);
}
add_filter('pre_get_posts', 'limit_posts_per_archive_page');