芝麻web文件管理V1.00
编辑当前文件:/www/wwwroot/fashionmodelquicktrack.com/wp-content/themes/flatsome/inc/widgets/widget-upsell.php
__( 'Add upsell products to product pages.', 'flatsome' ), ) // Args ); } /** * Front-end display of widget. * * @see WP_Widget::widget() * * @param array $args Widget arguments. * @param array $instance Saved values from database. */ public function widget( $args, $instance ) { global $product; /* Disable if not on product page */ if(!function_exists('is_product') || !is_product()) return; $upsells = $product->get_upsell_ids(); if ( sizeof( $upsells ) == 0 ) return; extract( $args ); if ( isset( $instance[ 'title' ] ) ) { $title = apply_filters( 'widget_title', $instance['title'] ); } else { $title = __( 'Complete the look', 'flatsome' ); } $meta_query = WC()->query->get_meta_query(); $args = array( 'post_type' => 'product', 'ignore_sticky_posts' => 1, 'no_found_rows' => 1, 'posts_per_page' => 9, 'orderby' => 'rand', 'post__in' => $upsells, 'post__not_in' => array( $product->get_id() ), 'meta_query' => $meta_query ); $products = new WP_Query( $args ); echo $before_widget; if ($products->have_posts()) : if ( ! empty( $title ) ) echo $before_title . $title . $after_title; ?>
have_posts() ) : $products->the_post(); ?>
: