Custom Woocommerce Category view
If you create your own shortcode based on the product category shortcode function duck_product_categories( $atts ) { global $woocommerce_loop; $atts = shortcode_atts( array( ‘number’ => null, ‘orderby’ => ‘name’, ‘order’ => ‘ASC’, ‘columns’ => ‘4’, ‘hide_empty’ => 1, ‘parent’ => ”, ‘ids’ => ” ), $atts ); if ( isset( $atts[‘ids’] ) ) { $ids … Read more