when i call this link ;
?s=key&order=ASC
wp display my search query order by ASC.
?s=key&order=ASC&number=10
how can we display whatever i want to display postnumber like 10 or more ?
is that possible ?
when i call this link ;
?s=key&order=ASC
wp display my search query order by ASC.
?s=key&order=ASC&number=10
how can we display whatever i want to display postnumber like 10 or more ?
is that possible ?
You must be logged in to post a comment.
If you’re asking to change the number of posts from 10 to something else, you can do one of the following
1) Submit the search query as
You can achieve this by adding hidden fields to the form. Just change the number to whatever you want
2) Go to Settings > Reading, change the setting there. This will change the setting for all the pages though
3) Add this to your theme’s functions.php or in a plugin
UPDATE IN RESPONSE TO COMMENT
This form does that work. Basically it’s same as the first option above. But except for the hidden field, it shows the field to the user allowing for changes.