SearchWP

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

<?php
// Return 12 results per page of SearchWP results.
add_filter( 'searchwp\query\per_page', function( $per_page, $args ) {
return 12;
}, 30, 2 );

How to use this code