Skip to content

Instantly share code, notes, and snippets.

@artikus11
Last active January 11, 2022 08:59
Show Gist options
  • Save artikus11/ad2421d0f5b841d7d7de02c60ced6154 to your computer and use it in GitHub Desktop.
Save artikus11/ad2421d0f5b841d7d7de02c60ced6154 to your computer and use it in GitHub Desktop.
Добавление аргументов в шорткод вывода товаров
add_filter(
'woocommerce_shortcode_products_query',
function ( $args ) {
$standard_array = [ 'menu_order', 'title', 'date', 'rand', 'id' ];
if ( isset( $args['orderby'] ) && ! in_array( $args['orderby'], $standard_array, true ) ) {
$args['orderby'] = 'post__in';
}
return $args;
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment