mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-05 12:32:23 +08:00
7 lines
278 B
Text
7 lines
278 B
Text
add_action('pre_get_posts','wc_woocommerce_archive');
|
|
|
|
function wctt_woocommerce_archive($query) {
|
|
if (!is_admin() && $query->is_main_query() && is_shop() || is_woocommerce() || is_product_category() || is_product_tag()) {
|
|
$query->set( 'posts_per_page', '30' );
|
|
}
|
|
}
|