__('A widget that shows woocommerce category feature image with selected category products', 'sparklestore') )); } private function widget_fields() { $prod_type = array( 'rightalign' => __('Right Align Category Image', 'sparklestore'), 'leftalign' => __('Left Align Category Image', 'sparklestore'), ); $taxonomy = 'product_cat'; $empty = 1; $orderby = 'name'; $show_count = 0; // 1 for yes, 0 for no $pad_counts = 0; // 1 for yes, 0 for no $hierarchical = 1; // 1 for yes, 0 for no $title = ''; $empty = 0; $args = array( 'taxonomy' => $taxonomy, 'orderby' => $orderby, 'show_count' => $show_count, 'pad_counts' => $pad_counts, 'hierarchical' => $hierarchical, 'title_li' => $title, 'hide_empty' => $empty ); $woocommerce_categories = array(); $woocommerce_categories_obj = get_categories($args); $woocommerce_categories[''] = 'Select Product Category'; foreach ($woocommerce_categories_obj as $category) { $woocommerce_categories[$category->term_id] = $category->name; } $fields = array( 'sparklestore_cat_product_title' => array( 'sparklestore_widgets_name' => 'sparklestore_cat_product_title', 'sparklestore_widgets_title' => __('Title', 'sparklestore'), 'sparklestore_widgets_field_type' => 'title', ), 'sparklestore_cat_product_short_desc' => array( 'sparklestore_widgets_name' => 'sparklestore_cat_product_short_desc', 'sparklestore_widgets_title' => __('Very Short Description', 'sparklestore'), 'sparklestore_widgets_field_type' => 'textarea', 'sparklestore_widgets_row' => 4, ), 'sparklestore_cat_image_aligment' => array( 'sparklestore_widgets_name' => 'sparklestore_cat_image_aligment', 'sparklestore_widgets_title' => __('Select Display Style (Image Alignment)', 'sparklestore'), 'sparklestore_widgets_field_type' => 'select', 'sparklestore_widgets_field_options' => $prod_type ), 'sparklestore_woo_category' => array( 'sparklestore_widgets_name' => 'sparklestore_woo_category', 'sparklestore_widgets_title' => __('Select Product Category', 'sparklestore'), 'sparklestore_widgets_field_type' => 'select', 'sparklestore_widgets_field_options' => $woocommerce_categories ), 'sparklestore_cat_product_number' => array( 'sparklestore_widgets_name' => 'sparklestore_cat_product_number', 'sparklestore_widgets_title' => __('Enter Number of Products Show', 'sparklestore'), 'sparklestore_widgets_field_type' => 'number', ), 'sparklestore_cat_cat_product_info' => array( 'sparklestore_widgets_name' => 'sparklestore_cat_cat_product_info', 'sparklestore_widgets_title' => __('Checked to Display Category Info', 'sparklestore'), 'sparklestore_widgets_field_type' => 'checkbox', ), ); return $fields; } public function widget($args, $instance) { extract($args); extract($instance); /** * wp query for first block */ $title = esc_attr( $instance['sparklestore_cat_product_title'] ); $shot_desc = esc_textarea( $instance['sparklestore_cat_product_short_desc'] ); $cat_aligment = esc_attr( $instance['sparklestore_cat_image_aligment'] ); $product_category = intval( $instance['sparklestore_woo_category'] ); $product_number = intval( $instance['sparklestore_cat_product_number'] ); $cat_info = intval( $instance['sparklestore_cat_cat_product_info'] ); if(!empty($product_category)){ $cat_id = get_term($product_category,'product_cat'); $category_id = $cat_id->term_id; $category_link = get_term_link( $category_id,'product_cat' ); } else{ $category_link = get_permalink( woocommerce_get_page_id( 'shop' ) ); } echo $before_widget; ?>

style="background-image:url();"style="background-image:url();">
    'product', 'tax_query' => array( array( 'taxonomy' => 'product_cat', 'field' => 'id', 'terms' => $product_category )), 'posts_per_page' => $product_number ); $query = new WP_Query($product_args); if($query->have_posts()) { while($query->have_posts()) { $query->the_post(); ?>
widget_fields(); foreach ($widget_fields as $widget_field) { extract($widget_field); $instance[$sparklestore_widgets_name] = sparklestore_widgets_updated_field_value($widget_field, $new_instance[$sparklestore_widgets_name]); } return $instance; } public function form($instance) { $widget_fields = $this->widget_fields(); foreach ($widget_fields as $widget_field) { extract($widget_field); $sparklestore_widgets_field_value = !empty($instance[$sparklestore_widgets_name]) ? $instance[$sparklestore_widgets_name] : ''; sparklestore_widgets_show_widget_field($this, $widget_field, $sparklestore_widgets_field_value); } } }