This content originally appeared on DEV Community and was authored by MD. Samrat Hossen
Use this filter to modify posts per page at woocommerce orders:
/**
* Modify number of orders displayed per page in My Account
*
* @param array $args Query arguments for fetching orders.
* @return array Modified query arguments.
*/
function modify_order_per_page( $args ) {
$args['posts_per_page'] = 4; // Change 10 to the desired number of orders per page.
return $args;
}
add_filter( 'woocommerce_my_account_my_orders_query', 'modify_order_per_page', 10, 1 );
This content originally appeared on DEV Community and was authored by MD. Samrat Hossen
Print
Share
Comment
Cite
Upload
Translate
Updates
There are no updates yet.
Click the Upload button above to add an update.

APA
MLA
MD. Samrat Hossen | Sciencx (2025-09-29T04:53:41+00:00) To modify woocommerce orders per page. Retrieved from https://www.scien.cx/2025/09/29/to-modify-woocommerce-orders-per-page/
" » To modify woocommerce orders per page." MD. Samrat Hossen | Sciencx - Monday September 29, 2025, https://www.scien.cx/2025/09/29/to-modify-woocommerce-orders-per-page/
HARVARDMD. Samrat Hossen | Sciencx Monday September 29, 2025 » To modify woocommerce orders per page., viewed ,<https://www.scien.cx/2025/09/29/to-modify-woocommerce-orders-per-page/>
VANCOUVERMD. Samrat Hossen | Sciencx - » To modify woocommerce orders per page. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2025/09/29/to-modify-woocommerce-orders-per-page/
CHICAGO" » To modify woocommerce orders per page." MD. Samrat Hossen | Sciencx - Accessed . https://www.scien.cx/2025/09/29/to-modify-woocommerce-orders-per-page/
IEEE" » To modify woocommerce orders per page." MD. Samrat Hossen | Sciencx [Online]. Available: https://www.scien.cx/2025/09/29/to-modify-woocommerce-orders-per-page/. [Accessed: ]
rf:citation » To modify woocommerce orders per page | MD. Samrat Hossen | Sciencx | https://www.scien.cx/2025/09/29/to-modify-woocommerce-orders-per-page/ |
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.