widget_cssclass = 'woocommerce widget_product_categories'; $this->widget_description = __( 'A list or dropdown of product categories.', 'woocommerce' ); $this->widget_id = 'woocommerce_product_categories'; $this->widget_name = __( 'WooCommerce Product Categories', 'woocommerce' ); $this->settings = array( 'title' => array( 'type' => 'text', 'std' => __( 'Product Categories', 'woocommerce' ), 'label' => __( 'Title', 'woocommerce' ) ), 'orderby' => array( 'type' => 'select', 'std' => 'name', 'label' => __( 'Order by', 'woocommerce' ), 'options' => array( 'order' => __( 'Category Order', 'woocommerce' ), 'name' => __( 'Name', 'woocommerce' ) ) ), 'dropdown' => array( 'type' => 'checkbox', 'std' => 0, 'label' => __( 'Show as dropdown', 'woocommerce' ) ), 'count' => array( 'type' => 'checkbox', 'std' => 0, 'label' => __( 'Show post counts', 'woocommerce' ) ), 'hierarchical' => array( 'type' => 'checkbox', 'std' => 1, 'label' => __( 'Show hierarchy', 'woocommerce' ) ), 'show_children_only' => array( 'type' => 'checkbox', 'std' => 0, 'label' => __( 'Only show children for the current category', 'woocommerce' ) ) ); parent::__construct(); } /** * widget function. * * @see WP_Widget * @access public * @param array $args * @param array $instance * @return void */ public function widget( $args, $instance ) { extract( $args ); $title = apply_filters( 'widget_title', $instance['title'], $instance, $this->id_base ); $c = ( isset( $instance['count'] ) && $instance['count'] ) ? '1' : '0'; $h = $instance['hierarchical'] ? true : false; $s = ( isset( $instance['show_children_only'] ) && $instance['show_children_only'] ) ? '1' : '0'; $d = ( isset( $instance['dropdown'] ) && $instance['dropdown'] ) ? '1' : '0'; $o = $instance['orderby'] ? $instance['orderby'] : 'order'; echo $before_widget; if ( $title ) echo $before_title . $title . $after_title; $cat_args = array( 'show_count' => $c, 'hierarchical' => $h, 'taxonomy' => 'product_cat' ); $cat_args['menu_order'] = false; if ( $o == 'order' ) { $cat_args['menu_order'] = 'asc'; } else { $cat_args['orderby'] = 'title'; } if ( $d ) { // Stuck with this until a fix for http://core.trac.wordpress.org/ticket/13258 wc_product_dropdown_categories( array( 'show_counts' => $c, 'hierarchical' => $h, 'show_uncategorized' => 0, 'orderby' => $o ) ); ?> current_cat = false; $this->cat_ancestors = array(); if ( is_tax('product_cat') ) { $this->current_cat = $wp_query->queried_object; $this->cat_ancestors = get_ancestors( $this->current_cat->term_id, 'product_cat' ); } elseif ( is_singular('product') ) { $product_category = wc_get_product_terms( $post->ID, 'product_cat', array( 'orderby' => 'parent' ) ); if ( $product_category ) { $this->current_cat = end( $product_category ); $this->cat_ancestors = get_ancestors( $this->current_cat->term_id, 'product_cat' ); } } include_once( WC()->plugin_path() . '/includes/walkers/class-product-cat-list-walker.php' ); $cat_args['walker'] = new WC_Product_Cat_List_Walker; $cat_args['title_li'] = ''; $cat_args['show_children_only'] = ( isset( $instance['show_children_only'] ) && $instance['show_children_only'] ) ? 1 : 0; $cat_args['pad_counts'] = 1; $cat_args['show_option_none'] = __('No product categories exist.', 'woocommerce' ); $cat_args['current_category'] = ( $this->current_cat ) ? $this->current_cat->term_id : ''; $cat_args['current_category_ancestors'] = $this->cat_ancestors; echo ''; } echo $after_widget; } } register_widget( 'WC_Widget_Product_Categories' );