searchwp\query\per_page
Since: 4.0.0
Table of Contents
Customize how many results are returned per page.
Parameters
Type | Parameter | Default | Since |
---|---|---|---|
Integer | $per_page |
get_option( 'posts_per_page' ) |
4.0.0 |
Array | $args |
Query arguments | 4.0.0 |
Examples
All hooks should be added to your custom SearchWP Customizations Plugin.
Return 12 results per page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Return 12 results per page of SearchWP results. | |
add_filter( 'searchwp\query\per_page', function( $per_page, $args ) { | |
return 12; | |
}, 30, 2 ); |