searchwp\query\per_page
Depuis : 4.0.0
Table des matières
Personnaliser le nombre de résultats retournés par page.
Paramètres
| Type | Paramètre | Défaut | Depuis |
|---|---|---|---|
| Entier | $per_page |
get_option( 'posts_per_page' ) |
4.0.0 |
| Tableau | $args |
Arguments de la requête | 4.0.0 |
Exemples
All hooks should be added to your custom SearchWP Customizations Plugin.
Retourner 12 résultats par page
This file contains hidden or 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 ); |

