2012-12-31 18:25:09 +00:00
|
|
|
<?php
|
2015-11-06 09:22:19 +00:00
|
|
|
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit; // Exit if accessed directly
|
|
|
|
}
|
|
|
|
|
2012-12-31 18:25:09 +00:00
|
|
|
/**
|
2015-11-03 13:53:50 +00:00
|
|
|
* WC_Shortcodes class
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
2015-09-16 07:26:30 +00:00
|
|
|
* @class WC_Shortcodes
|
|
|
|
* @version 2.1.0
|
|
|
|
* @package WooCommerce/Classes
|
|
|
|
* @category Class
|
|
|
|
* @author WooThemes
|
2012-12-31 18:25:09 +00:00
|
|
|
*/
|
|
|
|
class WC_Shortcodes {
|
|
|
|
|
2013-10-23 11:55:40 +00:00
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Init shortcodes.
|
2013-10-23 11:55:40 +00:00
|
|
|
*/
|
2013-11-01 21:15:52 +00:00
|
|
|
public static function init() {
|
2013-10-23 13:55:18 +00:00
|
|
|
$shortcodes = array(
|
|
|
|
'product' => __CLASS__ . '::product',
|
|
|
|
'product_page' => __CLASS__ . '::product_page',
|
|
|
|
'product_category' => __CLASS__ . '::product_category',
|
|
|
|
'product_categories' => __CLASS__ . '::product_categories',
|
|
|
|
'add_to_cart' => __CLASS__ . '::product_add_to_cart',
|
|
|
|
'add_to_cart_url' => __CLASS__ . '::product_add_to_cart_url',
|
|
|
|
'products' => __CLASS__ . '::products',
|
|
|
|
'recent_products' => __CLASS__ . '::recent_products',
|
|
|
|
'sale_products' => __CLASS__ . '::sale_products',
|
|
|
|
'best_selling_products' => __CLASS__ . '::best_selling_products',
|
|
|
|
'top_rated_products' => __CLASS__ . '::top_rated_products',
|
|
|
|
'featured_products' => __CLASS__ . '::featured_products',
|
|
|
|
'product_attribute' => __CLASS__ . '::product_attribute',
|
|
|
|
'related_products' => __CLASS__ . '::related_products',
|
|
|
|
'shop_messages' => __CLASS__ . '::shop_messages',
|
|
|
|
'woocommerce_order_tracking' => __CLASS__ . '::order_tracking',
|
|
|
|
'woocommerce_cart' => __CLASS__ . '::cart',
|
|
|
|
'woocommerce_checkout' => __CLASS__ . '::checkout',
|
|
|
|
'woocommerce_my_account' => __CLASS__ . '::my_account',
|
|
|
|
);
|
|
|
|
|
2013-12-29 13:54:55 +00:00
|
|
|
foreach ( $shortcodes as $shortcode => $function ) {
|
2013-10-23 13:55:18 +00:00
|
|
|
add_shortcode( apply_filters( "{$shortcode}_shortcode_tag", $shortcode ), $function );
|
2013-12-29 13:54:55 +00:00
|
|
|
}
|
2013-10-23 13:55:18 +00:00
|
|
|
|
|
|
|
// Alias for pre 2.1 compatibility
|
|
|
|
add_shortcode( 'woocommerce_messages', __CLASS__ . '::shop_messages' );
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
2013-08-09 16:11:15 +00:00
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Shortcode Wrapper.
|
2013-08-09 16:11:15 +00:00
|
|
|
*
|
2015-07-16 19:29:01 +00:00
|
|
|
* @param string[] $function
|
2013-08-09 16:11:15 +00:00
|
|
|
* @param array $atts (default: array())
|
2017-05-15 11:50:52 +00:00
|
|
|
* @param array $wrapper
|
|
|
|
*
|
2013-08-09 16:11:15 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function shortcode_wrapper(
|
|
|
|
$function,
|
2013-12-29 13:54:55 +00:00
|
|
|
$atts = array(),
|
2013-08-09 16:11:15 +00:00
|
|
|
$wrapper = array(
|
2013-12-29 13:54:55 +00:00
|
|
|
'class' => 'woocommerce',
|
2013-08-09 16:11:15 +00:00
|
|
|
'before' => null,
|
2016-08-27 01:46:45 +00:00
|
|
|
'after' => null,
|
2013-08-09 16:11:15 +00:00
|
|
|
)
|
2013-10-23 11:55:40 +00:00
|
|
|
) {
|
2013-08-09 16:11:15 +00:00
|
|
|
ob_start();
|
|
|
|
|
2015-04-13 11:48:40 +00:00
|
|
|
echo empty( $wrapper['before'] ) ? '<div class="' . esc_attr( $wrapper['class'] ) . '">' : $wrapper['before'];
|
2013-08-09 16:11:15 +00:00
|
|
|
call_user_func( $function, $atts );
|
2015-04-13 11:48:40 +00:00
|
|
|
echo empty( $wrapper['after'] ) ? '</div>' : $wrapper['after'];
|
2013-08-09 16:11:15 +00:00
|
|
|
|
|
|
|
return ob_get_clean();
|
|
|
|
}
|
|
|
|
|
2015-04-13 11:48:40 +00:00
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Loop over found products.
|
2015-04-13 11:48:40 +00:00
|
|
|
* @param array $query_args
|
|
|
|
* @param array $atts
|
|
|
|
* @param string $loop_name
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
private static function product_loop( $query_args, $atts, $loop_name ) {
|
|
|
|
global $woocommerce_loop;
|
|
|
|
|
2015-05-20 15:27:07 +00:00
|
|
|
$columns = absint( $atts['columns'] );
|
|
|
|
$woocommerce_loop['columns'] = $columns;
|
2016-02-12 13:30:10 +00:00
|
|
|
$woocommerce_loop['name'] = $loop_name;
|
2017-04-11 17:47:05 +00:00
|
|
|
$query_args = apply_filters( 'woocommerce_shortcode_products_query', $query_args, $atts, $loop_name );
|
2016-12-09 16:27:54 +00:00
|
|
|
$transient_name = 'wc_loop' . substr( md5( json_encode( $query_args ) . $loop_name ), 28 ) . WC_Cache_Helper::get_transient_version( 'product_query' );
|
2016-08-18 12:19:57 +00:00
|
|
|
$products = get_transient( $transient_name );
|
|
|
|
|
|
|
|
if ( false === $products || ! is_a( $products, 'WP_Query' ) ) {
|
2017-04-11 17:47:05 +00:00
|
|
|
$products = new WP_Query( $query_args );
|
2016-08-18 12:19:57 +00:00
|
|
|
set_transient( $transient_name, $products, DAY_IN_SECONDS * 30 );
|
|
|
|
}
|
2015-04-13 11:48:40 +00:00
|
|
|
|
|
|
|
ob_start();
|
|
|
|
|
2016-03-14 12:11:51 +00:00
|
|
|
if ( $products->have_posts() ) {
|
2017-06-22 12:39:17 +00:00
|
|
|
|
|
|
|
// Prime caches before grabbing objects.
|
|
|
|
update_post_caches( $products->posts, array( 'product', 'product_variation' ) );
|
2016-03-14 12:11:51 +00:00
|
|
|
?>
|
2015-04-13 11:48:40 +00:00
|
|
|
|
2016-09-07 18:17:46 +00:00
|
|
|
<?php do_action( "woocommerce_shortcode_before_{$loop_name}_loop", $atts ); ?>
|
2015-04-13 11:48:40 +00:00
|
|
|
|
|
|
|
<?php woocommerce_product_loop_start(); ?>
|
|
|
|
|
|
|
|
<?php while ( $products->have_posts() ) : $products->the_post(); ?>
|
|
|
|
|
|
|
|
<?php wc_get_template_part( 'content', 'product' ); ?>
|
|
|
|
|
|
|
|
<?php endwhile; // end of the loop. ?>
|
|
|
|
|
|
|
|
<?php woocommerce_product_loop_end(); ?>
|
|
|
|
|
2016-09-07 18:17:46 +00:00
|
|
|
<?php do_action( "woocommerce_shortcode_after_{$loop_name}_loop", $atts ); ?>
|
2015-04-13 11:48:40 +00:00
|
|
|
|
2016-03-14 12:11:51 +00:00
|
|
|
<?php
|
|
|
|
} else {
|
2016-09-07 18:17:46 +00:00
|
|
|
do_action( "woocommerce_shortcode_{$loop_name}_loop_no_results", $atts );
|
2016-03-14 12:11:51 +00:00
|
|
|
}
|
2015-04-13 11:48:40 +00:00
|
|
|
|
|
|
|
woocommerce_reset_loop();
|
|
|
|
wp_reset_postdata();
|
|
|
|
|
2015-05-20 15:27:07 +00:00
|
|
|
return '<div class="woocommerce columns-' . $columns . '">' . ob_get_clean() . '</div>';
|
2015-04-13 11:48:40 +00:00
|
|
|
}
|
|
|
|
|
2012-12-31 18:25:09 +00:00
|
|
|
/**
|
|
|
|
* Cart page shortcode.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-09-24 14:26:48 +00:00
|
|
|
public static function cart() {
|
2015-04-13 11:48:40 +00:00
|
|
|
return is_null( WC()->cart ) ? '' : self::shortcode_wrapper( array( 'WC_Shortcode_Cart', 'output' ) );
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checkout page shortcode.
|
|
|
|
*
|
|
|
|
* @param mixed $atts
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function checkout( $atts ) {
|
|
|
|
return self::shortcode_wrapper( array( 'WC_Shortcode_Checkout', 'output' ), $atts );
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Order tracking page shortcode.
|
|
|
|
*
|
|
|
|
* @param mixed $atts
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function order_tracking( $atts ) {
|
|
|
|
return self::shortcode_wrapper( array( 'WC_Shortcode_Order_Tracking', 'output' ), $atts );
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-07-02 12:52:18 +00:00
|
|
|
* My account page shortcode.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
|
|
|
* @param mixed $atts
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function my_account( $atts ) {
|
|
|
|
return self::shortcode_wrapper( array( 'WC_Shortcode_My_Account', 'output' ), $atts );
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* List products in a category shortcode.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
|
|
|
* @param array $atts
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-12-29 13:54:55 +00:00
|
|
|
public static function product_category( $atts ) {
|
2014-11-20 02:14:06 +00:00
|
|
|
$atts = shortcode_atts( array(
|
2014-07-31 06:10:07 +00:00
|
|
|
'per_page' => '12',
|
|
|
|
'columns' => '4',
|
2016-06-30 07:16:22 +00:00
|
|
|
'orderby' => 'menu_order title',
|
|
|
|
'order' => 'asc',
|
2014-07-31 06:10:07 +00:00
|
|
|
'category' => '', // Slugs
|
2016-08-27 01:46:45 +00:00
|
|
|
'operator' => 'IN', // Possible values are 'IN', 'NOT IN', 'AND'.
|
2016-07-15 07:49:44 +00:00
|
|
|
), $atts, 'product_category' );
|
2014-07-31 06:10:07 +00:00
|
|
|
|
2014-11-20 02:14:06 +00:00
|
|
|
if ( ! $atts['category'] ) {
|
2014-07-31 06:10:07 +00:00
|
|
|
return '';
|
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2015-08-11 11:04:30 +00:00
|
|
|
// Default ordering args
|
|
|
|
$ordering_args = WC()->query->get_catalog_ordering_args( $atts['orderby'], $atts['order'] );
|
|
|
|
$meta_query = WC()->query->get_meta_query();
|
|
|
|
$query_args = array(
|
2015-09-16 07:26:30 +00:00
|
|
|
'post_type' => 'product',
|
|
|
|
'post_status' => 'publish',
|
|
|
|
'ignore_sticky_posts' => 1,
|
|
|
|
'orderby' => $ordering_args['orderby'],
|
|
|
|
'order' => $ordering_args['order'],
|
|
|
|
'posts_per_page' => $atts['per_page'],
|
2016-08-27 01:46:45 +00:00
|
|
|
'meta_query' => $meta_query,
|
2016-12-08 10:56:45 +00:00
|
|
|
'tax_query' => WC()->query->get_tax_query(),
|
2012-12-31 18:25:09 +00:00
|
|
|
);
|
|
|
|
|
2015-09-16 07:26:30 +00:00
|
|
|
$query_args = self::_maybe_add_category_args( $query_args, $atts['category'], $atts['operator'] );
|
|
|
|
|
2012-12-31 18:25:09 +00:00
|
|
|
if ( isset( $ordering_args['meta_key'] ) ) {
|
2015-04-13 11:48:40 +00:00
|
|
|
$query_args['meta_key'] = $ordering_args['meta_key'];
|
2013-12-29 13:41:48 +00:00
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2015-08-11 11:04:30 +00:00
|
|
|
$return = self::product_loop( $query_args, $atts, 'product_cat' );
|
2014-06-09 08:15:46 +00:00
|
|
|
|
|
|
|
// Remove ordering query arguments
|
|
|
|
WC()->query->remove_ordering_args();
|
|
|
|
|
|
|
|
return $return;
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* List all (or limited) product categories.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
|
|
|
* @param array $atts
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function product_categories( $atts ) {
|
2012-12-31 18:25:09 +00:00
|
|
|
global $woocommerce_loop;
|
|
|
|
|
2014-11-20 02:14:06 +00:00
|
|
|
$atts = shortcode_atts( array(
|
2012-12-31 18:25:09 +00:00
|
|
|
'number' => null,
|
|
|
|
'orderby' => 'name',
|
|
|
|
'order' => 'ASC',
|
2015-02-04 12:44:27 +00:00
|
|
|
'columns' => '4',
|
2012-12-31 18:25:09 +00:00
|
|
|
'hide_empty' => 1,
|
2015-02-04 12:44:27 +00:00
|
|
|
'parent' => '',
|
2016-08-27 01:46:45 +00:00
|
|
|
'ids' => '',
|
2016-07-15 07:49:44 +00:00
|
|
|
), $atts, 'product_categories' );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2016-09-12 12:10:08 +00:00
|
|
|
$ids = array_filter( array_map( 'trim', explode( ',', $atts['ids'] ) ) );
|
2016-09-12 13:53:04 +00:00
|
|
|
$hide_empty = ( true === $atts['hide_empty'] || 'true' === $atts['hide_empty'] || 1 === $atts['hide_empty'] || '1' === $atts['hide_empty'] ) ? 1 : 0;
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-02-08 16:30:39 +00:00
|
|
|
// get terms and workaround WP bug with parents/pad counts
|
2013-12-29 13:41:48 +00:00
|
|
|
$args = array(
|
2014-11-20 02:14:06 +00:00
|
|
|
'orderby' => $atts['orderby'],
|
|
|
|
'order' => $atts['order'],
|
2013-12-29 13:41:48 +00:00
|
|
|
'hide_empty' => $hide_empty,
|
2012-12-31 18:25:09 +00:00
|
|
|
'include' => $ids,
|
2013-02-08 16:30:39 +00:00
|
|
|
'pad_counts' => true,
|
2016-08-27 01:46:45 +00:00
|
|
|
'child_of' => $atts['parent'],
|
2012-12-31 18:25:09 +00:00
|
|
|
);
|
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
$product_categories = get_terms( 'product_cat', $args );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2014-11-20 02:14:06 +00:00
|
|
|
if ( '' !== $atts['parent'] ) {
|
|
|
|
$product_categories = wp_list_filter( $product_categories, array( 'parent' => $atts['parent'] ) );
|
2013-12-29 13:54:55 +00:00
|
|
|
}
|
2013-02-08 16:30:39 +00:00
|
|
|
|
2014-02-11 15:55:46 +00:00
|
|
|
if ( $hide_empty ) {
|
|
|
|
foreach ( $product_categories as $key => $category ) {
|
2016-09-07 22:32:24 +00:00
|
|
|
if ( 0 == $category->count ) {
|
2014-02-11 15:55:46 +00:00
|
|
|
unset( $product_categories[ $key ] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-20 02:14:06 +00:00
|
|
|
if ( $atts['number'] ) {
|
|
|
|
$product_categories = array_slice( $product_categories, 0, $atts['number'] );
|
2013-12-29 13:54:55 +00:00
|
|
|
}
|
2013-02-08 16:30:39 +00:00
|
|
|
|
2015-05-20 15:27:07 +00:00
|
|
|
$columns = absint( $atts['columns'] );
|
|
|
|
$woocommerce_loop['columns'] = $columns;
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
ob_start();
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
if ( $product_categories ) {
|
|
|
|
woocommerce_product_loop_start();
|
2012-12-31 18:25:09 +00:00
|
|
|
|
|
|
|
foreach ( $product_categories as $category ) {
|
2013-11-25 12:45:04 +00:00
|
|
|
wc_get_template( 'content-product_cat.php', array(
|
2016-08-27 01:46:45 +00:00
|
|
|
'category' => $category,
|
2012-12-31 18:25:09 +00:00
|
|
|
) );
|
|
|
|
}
|
|
|
|
|
2013-11-25 14:16:26 +00:00
|
|
|
woocommerce_product_loop_end();
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
2013-11-25 14:16:26 +00:00
|
|
|
woocommerce_reset_loop();
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2015-05-20 15:27:07 +00:00
|
|
|
return '<div class="woocommerce columns-' . $columns . '">' . ob_get_clean() . '</div>';
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Recent Products shortcode.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
|
|
|
* @param array $atts
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function recent_products( $atts ) {
|
2014-11-20 02:14:06 +00:00
|
|
|
$atts = shortcode_atts( array(
|
2015-09-16 07:26:30 +00:00
|
|
|
'per_page' => '12',
|
|
|
|
'columns' => '4',
|
|
|
|
'orderby' => 'date',
|
|
|
|
'order' => 'desc',
|
|
|
|
'category' => '', // Slugs
|
2016-08-27 01:46:45 +00:00
|
|
|
'operator' => 'IN', // Possible values are 'IN', 'NOT IN', 'AND'.
|
2016-07-15 07:49:44 +00:00
|
|
|
), $atts, 'recent_products' );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2015-04-13 11:48:40 +00:00
|
|
|
$query_args = array(
|
|
|
|
'post_type' => 'product',
|
|
|
|
'post_status' => 'publish',
|
|
|
|
'ignore_sticky_posts' => 1,
|
|
|
|
'posts_per_page' => $atts['per_page'],
|
|
|
|
'orderby' => $atts['orderby'],
|
|
|
|
'order' => $atts['order'],
|
2016-08-27 01:46:45 +00:00
|
|
|
'meta_query' => WC()->query->get_meta_query(),
|
2016-12-08 10:56:45 +00:00
|
|
|
'tax_query' => WC()->query->get_tax_query(),
|
2012-12-31 18:25:09 +00:00
|
|
|
);
|
|
|
|
|
2015-09-16 07:26:30 +00:00
|
|
|
$query_args = self::_maybe_add_category_args( $query_args, $atts['category'], $atts['operator'] );
|
|
|
|
|
2015-04-13 11:48:40 +00:00
|
|
|
return self::product_loop( $query_args, $atts, 'recent_products' );
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* List multiple products shortcode.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
|
|
|
* @param array $atts
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function products( $atts ) {
|
2014-11-20 02:14:06 +00:00
|
|
|
$atts = shortcode_atts( array(
|
2015-02-11 17:21:53 +00:00
|
|
|
'columns' => '4',
|
|
|
|
'orderby' => 'title',
|
|
|
|
'order' => 'asc',
|
|
|
|
'ids' => '',
|
2016-08-27 01:46:45 +00:00
|
|
|
'skus' => '',
|
2016-07-15 07:49:44 +00:00
|
|
|
), $atts, 'products' );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2015-04-13 11:48:40 +00:00
|
|
|
$query_args = array(
|
2014-12-21 15:31:27 +00:00
|
|
|
'post_type' => 'product',
|
|
|
|
'post_status' => 'publish',
|
|
|
|
'ignore_sticky_posts' => 1,
|
|
|
|
'orderby' => $atts['orderby'],
|
|
|
|
'order' => $atts['order'],
|
|
|
|
'posts_per_page' => -1,
|
2016-08-27 01:46:45 +00:00
|
|
|
'meta_query' => WC()->query->get_meta_query(),
|
2016-12-08 10:56:45 +00:00
|
|
|
'tax_query' => WC()->query->get_tax_query(),
|
2012-12-31 18:25:09 +00:00
|
|
|
);
|
|
|
|
|
2015-02-11 17:21:53 +00:00
|
|
|
if ( ! empty( $atts['skus'] ) ) {
|
2015-04-13 11:48:40 +00:00
|
|
|
$query_args['meta_query'][] = array(
|
|
|
|
'key' => '_sku',
|
|
|
|
'value' => array_map( 'trim', explode( ',', $atts['skus'] ) ),
|
2016-08-27 01:46:45 +00:00
|
|
|
'compare' => 'IN',
|
2013-12-29 13:41:48 +00:00
|
|
|
);
|
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2015-02-11 17:21:53 +00:00
|
|
|
if ( ! empty( $atts['ids'] ) ) {
|
2015-04-13 11:48:40 +00:00
|
|
|
$query_args['post__in'] = array_map( 'trim', explode( ',', $atts['ids'] ) );
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
2015-04-13 11:48:40 +00:00
|
|
|
return self::product_loop( $query_args, $atts, 'products' );
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Display a single product.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
|
|
|
* @param array $atts
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function product( $atts ) {
|
2014-11-20 02:14:06 +00:00
|
|
|
if ( empty( $atts ) ) {
|
|
|
|
return '';
|
|
|
|
}
|
2013-12-29 13:41:48 +00:00
|
|
|
|
2014-12-21 15:31:27 +00:00
|
|
|
$meta_query = WC()->query->get_meta_query();
|
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
$args = array(
|
2014-12-21 15:31:27 +00:00
|
|
|
'post_type' => 'product',
|
|
|
|
'posts_per_page' => 1,
|
|
|
|
'no_found_rows' => 1,
|
|
|
|
'post_status' => 'publish',
|
2016-08-27 01:46:45 +00:00
|
|
|
'meta_query' => $meta_query,
|
2016-12-08 10:56:45 +00:00
|
|
|
'tax_query' => WC()->query->get_tax_query(),
|
2013-12-29 13:41:48 +00:00
|
|
|
);
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-12-29 13:54:55 +00:00
|
|
|
if ( isset( $atts['sku'] ) ) {
|
2013-12-29 13:41:48 +00:00
|
|
|
$args['meta_query'][] = array(
|
2015-09-16 07:26:30 +00:00
|
|
|
'key' => '_sku',
|
|
|
|
'value' => $atts['sku'],
|
2016-08-27 01:46:45 +00:00
|
|
|
'compare' => '=',
|
2013-12-29 13:41:48 +00:00
|
|
|
);
|
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-12-29 13:54:55 +00:00
|
|
|
if ( isset( $atts['id'] ) ) {
|
2013-12-29 13:41:48 +00:00
|
|
|
$args['p'] = $atts['id'];
|
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
ob_start();
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-06-06 12:22:28 +00:00
|
|
|
$products = new WP_Query( apply_filters( 'woocommerce_shortcode_products_query', $args, $atts, null ) );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
|
|
|
if ( $products->have_posts() ) : ?>
|
|
|
|
|
2013-11-25 14:16:26 +00:00
|
|
|
<?php woocommerce_product_loop_start(); ?>
|
2012-12-31 18:25:09 +00:00
|
|
|
|
|
|
|
<?php while ( $products->have_posts() ) : $products->the_post(); ?>
|
|
|
|
|
2013-11-25 12:45:04 +00:00
|
|
|
<?php wc_get_template_part( 'content', 'product' ); ?>
|
2012-12-31 18:25:09 +00:00
|
|
|
|
|
|
|
<?php endwhile; // end of the loop. ?>
|
|
|
|
|
2013-11-25 14:16:26 +00:00
|
|
|
<?php woocommerce_product_loop_end(); ?>
|
2012-12-31 18:25:09 +00:00
|
|
|
|
|
|
|
<?php endif;
|
|
|
|
|
|
|
|
wp_reset_postdata();
|
|
|
|
|
2015-02-24 20:32:35 +00:00
|
|
|
$css_class = 'woocommerce';
|
|
|
|
|
|
|
|
if ( isset( $atts['class'] ) ) {
|
|
|
|
$css_class .= ' ' . $atts['class'];
|
|
|
|
}
|
|
|
|
|
|
|
|
return '<div class="' . esc_attr( $css_class ) . '">' . ob_get_clean() . '</div>';
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Display a single product price + cart button.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
|
|
|
* @param array $atts
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function product_add_to_cart( $atts ) {
|
2017-05-15 09:54:06 +00:00
|
|
|
global $post;
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2014-11-20 02:14:06 +00:00
|
|
|
if ( empty( $atts ) ) {
|
|
|
|
return '';
|
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2014-11-20 02:14:06 +00:00
|
|
|
$atts = shortcode_atts( array(
|
2013-11-18 14:37:27 +00:00
|
|
|
'id' => '',
|
2014-02-28 21:43:31 +00:00
|
|
|
'class' => '',
|
2014-11-20 02:14:06 +00:00
|
|
|
'quantity' => '1',
|
2013-11-18 14:37:27 +00:00
|
|
|
'sku' => '',
|
|
|
|
'style' => 'border:4px solid #ccc; padding: 12px;',
|
2016-08-27 01:46:45 +00:00
|
|
|
'show_price' => 'true',
|
2016-07-15 07:49:44 +00:00
|
|
|
), $atts, 'product_add_to_cart' );
|
2013-11-18 14:37:27 +00:00
|
|
|
|
2014-11-20 02:14:06 +00:00
|
|
|
if ( ! empty( $atts['id'] ) ) {
|
|
|
|
$product_data = get_post( $atts['id'] );
|
|
|
|
} elseif ( ! empty( $atts['sku'] ) ) {
|
2014-11-27 12:31:56 +00:00
|
|
|
$product_id = wc_get_product_id_by_sku( $atts['sku'] );
|
2012-12-31 18:25:09 +00:00
|
|
|
$product_data = get_post( $product_id );
|
|
|
|
} else {
|
2013-11-29 09:15:58 +00:00
|
|
|
return '';
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
2016-03-11 12:53:50 +00:00
|
|
|
$product = is_object( $product_data ) && in_array( $product_data->post_type, array( 'product', 'product_variation' ) ) ? wc_setup_product_data( $product_data ) : false;
|
|
|
|
|
|
|
|
if ( ! $product ) {
|
2013-11-29 09:15:58 +00:00
|
|
|
return '';
|
2013-12-29 13:54:55 +00:00
|
|
|
}
|
2013-11-27 16:03:54 +00:00
|
|
|
|
2015-11-25 14:26:58 +00:00
|
|
|
$styles = empty( $atts['style'] ) ? '' : ' style="' . esc_attr( $atts['style'] ) . '"';
|
|
|
|
|
2013-09-25 11:35:06 +00:00
|
|
|
ob_start();
|
|
|
|
?>
|
2015-11-25 14:26:58 +00:00
|
|
|
<p class="product woocommerce add_to_cart_inline <?php echo esc_attr( $atts['class'] ); ?>"<?php echo $styles; ?>>
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2014-11-20 02:14:06 +00:00
|
|
|
<?php if ( 'true' == $atts['show_price'] ) : ?>
|
2013-11-18 14:37:27 +00:00
|
|
|
<?php echo $product->get_price_html(); ?>
|
|
|
|
<?php endif; ?>
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2014-11-20 02:14:06 +00:00
|
|
|
<?php woocommerce_template_loop_add_to_cart( array( 'quantity' => $atts['quantity'] ) ); ?>
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-09-25 11:35:06 +00:00
|
|
|
</p><?php
|
2013-02-20 18:10:03 +00:00
|
|
|
|
2013-09-26 14:11:28 +00:00
|
|
|
// Restore Product global in case this is shown inside a product post
|
|
|
|
wc_setup_product_data( $post );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-09-25 11:35:06 +00:00
|
|
|
return ob_get_clean();
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Get the add to cart URL for a product.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
|
|
|
* @param array $atts
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function product_add_to_cart_url( $atts ) {
|
2014-11-20 02:14:06 +00:00
|
|
|
if ( empty( $atts ) ) {
|
|
|
|
return '';
|
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
if ( isset( $atts['id'] ) ) {
|
|
|
|
$product_data = get_post( $atts['id'] );
|
2012-12-31 18:25:09 +00:00
|
|
|
} elseif ( isset( $atts['sku'] ) ) {
|
2014-11-27 12:31:56 +00:00
|
|
|
$product_id = wc_get_product_id_by_sku( $atts['sku'] );
|
2012-12-31 18:25:09 +00:00
|
|
|
$product_data = get_post( $product_id );
|
2016-01-07 09:07:02 +00:00
|
|
|
} else {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2016-03-11 12:53:50 +00:00
|
|
|
$product = is_object( $product_data ) && in_array( $product_data->post_type, array( 'product', 'product_variation' ) ) ? wc_setup_product_data( $product_data ) : false;
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2016-03-11 12:53:50 +00:00
|
|
|
if ( ! $product ) {
|
2013-11-29 09:15:58 +00:00
|
|
|
return '';
|
2013-12-29 13:54:55 +00:00
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2014-08-19 10:09:29 +00:00
|
|
|
$_product = wc_get_product( $product_data );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
|
|
|
return esc_url( $_product->add_to_cart_url() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* List all products on sale.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
|
|
|
* @param array $atts
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-12-29 13:54:55 +00:00
|
|
|
public static function sale_products( $atts ) {
|
2014-11-20 02:14:06 +00:00
|
|
|
$atts = shortcode_atts( array(
|
|
|
|
'per_page' => '12',
|
|
|
|
'columns' => '4',
|
|
|
|
'orderby' => 'title',
|
2016-04-20 11:27:20 +00:00
|
|
|
'order' => 'asc',
|
|
|
|
'category' => '', // Slugs
|
2016-08-27 01:46:45 +00:00
|
|
|
'operator' => 'IN', // Possible values are 'IN', 'NOT IN', 'AND'.
|
2016-07-15 07:49:44 +00:00
|
|
|
), $atts, 'sale_products' );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2015-04-13 11:48:40 +00:00
|
|
|
$query_args = array(
|
2015-09-16 07:26:30 +00:00
|
|
|
'posts_per_page' => $atts['per_page'],
|
|
|
|
'orderby' => $atts['orderby'],
|
|
|
|
'order' => $atts['order'],
|
|
|
|
'no_found_rows' => 1,
|
|
|
|
'post_status' => 'publish',
|
|
|
|
'post_type' => 'product',
|
|
|
|
'meta_query' => WC()->query->get_meta_query(),
|
2016-12-08 10:56:45 +00:00
|
|
|
'tax_query' => WC()->query->get_tax_query(),
|
2016-08-27 01:46:45 +00:00
|
|
|
'post__in' => array_merge( array( 0 ), wc_get_product_ids_on_sale() ),
|
2012-12-31 18:25:09 +00:00
|
|
|
);
|
|
|
|
|
2016-04-20 11:27:20 +00:00
|
|
|
$query_args = self::_maybe_add_category_args( $query_args, $atts['category'], $atts['operator'] );
|
|
|
|
|
2015-04-13 11:48:40 +00:00
|
|
|
return self::product_loop( $query_args, $atts, 'sale_products' );
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* List best selling products on sale.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
|
|
|
* @param array $atts
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-12-29 13:54:55 +00:00
|
|
|
public static function best_selling_products( $atts ) {
|
2014-11-20 02:14:06 +00:00
|
|
|
$atts = shortcode_atts( array(
|
|
|
|
'per_page' => '12',
|
2015-09-16 07:26:30 +00:00
|
|
|
'columns' => '4',
|
|
|
|
'category' => '', // Slugs
|
2016-08-27 01:46:45 +00:00
|
|
|
'operator' => 'IN', // Possible values are 'IN', 'NOT IN', 'AND'.
|
2016-07-15 07:49:44 +00:00
|
|
|
), $atts, 'best_selling_products' );
|
2013-12-29 13:41:48 +00:00
|
|
|
|
2015-04-13 11:48:40 +00:00
|
|
|
$query_args = array(
|
2014-11-20 02:14:06 +00:00
|
|
|
'post_type' => 'product',
|
|
|
|
'post_status' => 'publish',
|
|
|
|
'ignore_sticky_posts' => 1,
|
|
|
|
'posts_per_page' => $atts['per_page'],
|
|
|
|
'meta_key' => 'total_sales',
|
|
|
|
'orderby' => 'meta_value_num',
|
2016-08-27 01:46:45 +00:00
|
|
|
'meta_query' => WC()->query->get_meta_query(),
|
2016-12-08 10:56:45 +00:00
|
|
|
'tax_query' => WC()->query->get_tax_query(),
|
2013-12-29 13:41:48 +00:00
|
|
|
);
|
|
|
|
|
2015-09-16 07:26:30 +00:00
|
|
|
$query_args = self::_maybe_add_category_args( $query_args, $atts['category'], $atts['operator'] );
|
|
|
|
|
2015-04-13 11:48:40 +00:00
|
|
|
return self::product_loop( $query_args, $atts, 'best_selling_products' );
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* List top rated products on sale.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
|
|
|
* @param array $atts
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-12-29 13:54:55 +00:00
|
|
|
public static function top_rated_products( $atts ) {
|
2014-11-20 02:14:06 +00:00
|
|
|
$atts = shortcode_atts( array(
|
|
|
|
'per_page' => '12',
|
|
|
|
'columns' => '4',
|
|
|
|
'orderby' => 'title',
|
2015-09-16 07:26:30 +00:00
|
|
|
'order' => 'asc',
|
|
|
|
'category' => '', // Slugs
|
2016-08-27 01:46:45 +00:00
|
|
|
'operator' => 'IN', // Possible values are 'IN', 'NOT IN', 'AND'.
|
2016-07-15 07:49:44 +00:00
|
|
|
), $atts, 'top_rated_products' );
|
2013-12-29 13:41:48 +00:00
|
|
|
|
2015-04-13 11:48:40 +00:00
|
|
|
$query_args = array(
|
2014-12-21 15:31:27 +00:00
|
|
|
'post_type' => 'product',
|
|
|
|
'post_status' => 'publish',
|
|
|
|
'ignore_sticky_posts' => 1,
|
|
|
|
'orderby' => $atts['orderby'],
|
|
|
|
'order' => $atts['order'],
|
|
|
|
'posts_per_page' => $atts['per_page'],
|
2016-08-27 01:46:45 +00:00
|
|
|
'meta_query' => WC()->query->get_meta_query(),
|
2016-12-08 10:56:45 +00:00
|
|
|
'tax_query' => WC()->query->get_tax_query(),
|
2013-12-29 13:41:48 +00:00
|
|
|
);
|
|
|
|
|
2015-09-16 07:26:30 +00:00
|
|
|
$query_args = self::_maybe_add_category_args( $query_args, $atts['category'], $atts['operator'] );
|
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
add_filter( 'posts_clauses', array( __CLASS__, 'order_by_rating_post_clauses' ) );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2015-04-13 11:48:40 +00:00
|
|
|
$return = self::product_loop( $query_args, $atts, 'top_rated_products' );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-12-29 13:40:43 +00:00
|
|
|
remove_filter( 'posts_clauses', array( __CLASS__, 'order_by_rating_post_clauses' ) );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2015-04-13 11:48:40 +00:00
|
|
|
return $return;
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Output featured products.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
|
|
|
* @param array $atts
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function featured_products( $atts ) {
|
2014-11-20 02:14:06 +00:00
|
|
|
$atts = shortcode_atts( array(
|
|
|
|
'per_page' => '12',
|
|
|
|
'columns' => '4',
|
|
|
|
'orderby' => 'date',
|
2015-09-16 07:26:30 +00:00
|
|
|
'order' => 'desc',
|
|
|
|
'category' => '', // Slugs
|
2016-08-27 01:46:45 +00:00
|
|
|
'operator' => 'IN', // Possible values are 'IN', 'NOT IN', 'AND'.
|
2016-07-15 07:49:44 +00:00
|
|
|
), $atts, 'featured_products' );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2016-12-08 10:56:45 +00:00
|
|
|
$meta_query = WC()->query->get_meta_query();
|
|
|
|
$tax_query = WC()->query->get_tax_query();
|
|
|
|
$tax_query[] = array(
|
|
|
|
'taxonomy' => 'product_visibility',
|
|
|
|
'field' => 'name',
|
|
|
|
'terms' => 'featured',
|
|
|
|
'operator' => 'IN',
|
2014-12-21 15:31:27 +00:00
|
|
|
);
|
|
|
|
|
2015-04-13 11:48:40 +00:00
|
|
|
$query_args = array(
|
2014-11-20 02:14:06 +00:00
|
|
|
'post_type' => 'product',
|
|
|
|
'post_status' => 'publish',
|
|
|
|
'ignore_sticky_posts' => 1,
|
|
|
|
'posts_per_page' => $atts['per_page'],
|
|
|
|
'orderby' => $atts['orderby'],
|
|
|
|
'order' => $atts['order'],
|
2016-08-27 01:46:45 +00:00
|
|
|
'meta_query' => $meta_query,
|
2016-12-08 10:56:45 +00:00
|
|
|
'tax_query' => $tax_query,
|
2012-12-31 18:25:09 +00:00
|
|
|
);
|
|
|
|
|
2015-09-16 07:26:30 +00:00
|
|
|
$query_args = self::_maybe_add_category_args( $query_args, $atts['category'], $atts['operator'] );
|
|
|
|
|
2015-04-13 11:48:40 +00:00
|
|
|
return self::product_loop( $query_args, $atts, 'featured_products' );
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Show a single product page.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
|
|
|
* @param array $atts
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 13:55:18 +00:00
|
|
|
public static function product_page( $atts ) {
|
2014-11-20 02:14:06 +00:00
|
|
|
if ( empty( $atts ) ) {
|
|
|
|
return '';
|
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2014-11-20 02:14:06 +00:00
|
|
|
if ( ! isset( $atts['id'] ) && ! isset( $atts['sku'] ) ) {
|
|
|
|
return '';
|
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
$args = array(
|
2014-11-20 02:14:06 +00:00
|
|
|
'posts_per_page' => 1,
|
|
|
|
'post_type' => 'product',
|
|
|
|
'post_status' => 'publish',
|
|
|
|
'ignore_sticky_posts' => 1,
|
2016-08-27 01:46:45 +00:00
|
|
|
'no_found_rows' => 1,
|
2013-12-29 13:41:48 +00:00
|
|
|
);
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
if ( isset( $atts['sku'] ) ) {
|
|
|
|
$args['meta_query'][] = array(
|
|
|
|
'key' => '_sku',
|
2015-01-19 17:07:57 +00:00
|
|
|
'value' => sanitize_text_field( $atts['sku'] ),
|
2016-08-27 01:46:45 +00:00
|
|
|
'compare' => '=',
|
2013-12-29 13:41:48 +00:00
|
|
|
);
|
2015-01-17 05:01:05 +00:00
|
|
|
|
|
|
|
$args['post_type'] = array( 'product', 'product_variation' );
|
2013-12-29 13:41:48 +00:00
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
if ( isset( $atts['id'] ) ) {
|
2015-01-19 17:07:57 +00:00
|
|
|
$args['p'] = absint( $atts['id'] );
|
2013-12-29 13:41:48 +00:00
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
$single_product = new WP_Query( $args );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2015-01-19 16:54:28 +00:00
|
|
|
$preselected_id = '0';
|
|
|
|
|
2015-01-17 05:01:05 +00:00
|
|
|
// check if sku is a variation
|
2016-09-07 22:32:24 +00:00
|
|
|
if ( isset( $atts['sku'] ) && $single_product->have_posts() && 'product_variation' === $single_product->post->post_type ) {
|
2015-04-13 11:48:40 +00:00
|
|
|
|
2015-01-17 05:01:05 +00:00
|
|
|
$variation = new WC_Product_Variation( $single_product->post->ID );
|
WIP - Product CRUD (#12065)
* Created function to get the catalog visibility options
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* Hardcode the get_type per product class
* Initial look through getters and setters and abstract data
* Missing var
* Add related product functions and deprecate those in class.
* No need to exclude ID
* Fixed coding standards and improved the docblocks
* Get cached terms from wc_get_related_terms()
* Fixed wrong variable in wc_get_related_terms
* Use count() instead of sizeof()
* Sanitize ids later
* Remove unneeded comments
* wc_get_product_term_ids instead of related wording and use in other places.
get_the_terms is used here and also handles caching, something
wp_get_post_terms does not.
* Clean up the abstract product class a bit, deprecate two functions we have renamed, make update & create work properly, and add some tests for it.
* Bump template version
* Handle PR feedback: Remove duplicate regular_price update, allow changing of post status for products, remove deprecation for get_title since we might still offer it as a function
* Made abstract function useful
* External Product CRUD
* _virtual meta should be 'no', not taxable, in product unit test helper
* Grouped product class
* Tests
* Move children to meta and update test
* Use get_upsell_ids
* Spacing in query
* Moving and refactoring methods
* Availability html
* Tidy/add todos
* Rename method
* Put back review functions (still todo)
* missing $this
* get_price_including_tax/excluding_tax functions
* wc_get_price_to_display
* Price handling
* [Product CRUD] Variable (#12146)
* [Product CRUD] Variable Products
* Handle PR feedback.
* [Product CRUD] Grouped Handling (#12151)
* Handle grouped product saving
* Update routine
* [Product CRUD] Product crud terms (#12149)
* Category and tag id handling
* Replace template functions
* Remove todo
* Handle default name in save function
* Product crud admin save routine (#12174)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Spacing
* Fix comment
* wc_implode_text_attributes helper function
* [Product CRUD] Product crud admin use getters (#12196)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Move settings into new files
* Refactor panels and use getters
* Use getters for variation panel
* Revert save variation changes for now
* Add todos
* Fix downloads
* REST API CRUD Updates
* Additional API updates/fixes. Added some todos
* Fix final failing tests and implementing setters/getters and attributes functionality.
* Fix comparison for is_on_sale and remove download_type from WC_Product.
* Add a wc_get_products wrapper.
* Remove the download type input from the product data metabox for downloadable products. (#12221)
* [Product CRUD] Variations - setters, getters and admin. (#12228)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* Feedback fixes
* Implement CRUD in the legacy REST API
* Handle PR feedback
* [Product CRUD] Getter setter proxy methods (#12236)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* get_prop implementation in abstract and data classes
* Implement set_prop
* Change handling
* Array key exists
* set_object_read
* Use get_the_terms() instead of wp_get_post_terms()
wp_get_post_terms() is a wrapper around wp_get_object_terms() which does not
use the object cache, and generates a database query every time it is used.
get_the_terms() however can use data from the object cache if present.
* Allow WP_Query to preload post data, and meta in wc_get_products()
Allow WP_Query to bulk query for post data and meta if more than
just IDs are requested from wc_get_products(). Reduces query count
significantly.
* [Product CRUD] Variable, variation, notices, and stock handling (#12277)
* No longer needed
* Remove old todos
* Use getters in admin list
* Related and upsells update for CRUD
* Fix notice in gallery
* Variable fixes and todos
* Context
* Price sync
* Revert variation attributes change
* Return parent data in view context
* Defer term counting
* wc_find_matching_product_variation
* Stock manage tweaks
* Stock fixes
* Correct id
* correct id
* Better sync
* Data logic setter fix
* feedback
* First methods for WP_Product crud
* Product set methods
* Fixed several erros while setting data
* Hardcode the get_type per product class
* Initial look through getters and setters and abstract data
* Missing var
* Fixed coding standards and improved the docblocks
* Get cached terms from wc_get_related_terms()
* Fixed wrong variable in wc_get_related_terms
* Use count() instead of sizeof()
* Add related product functions and deprecate those in class.
* No need to exclude ID
* Sanitize ids later
* Clean up the abstract product class a bit, deprecate two functions we have renamed, make update & create work properly, and add some tests for it.
* Remove unneeded comments
* wc_get_product_term_ids instead of related wording and use in other places.
get_the_terms is used here and also handles caching, something
wp_get_post_terms does not.
* Handle PR feedback: Remove duplicate regular_price update, allow changing of post status for products, remove deprecation for get_title since we might still offer it as a function
* External Product CRUD
* _virtual meta should be 'no', not taxable, in product unit test helper
* Bump template version
* Made abstract function useful
* Grouped product class
* Tests
* Move children to meta and update test
* Use get_upsell_ids
* Spacing in query
* Moving and refactoring methods
* Availability html
* Tidy/add todos
* Rename method
* Put back review functions (still todo)
* missing $this
* get_price_including_tax/excluding_tax functions
* wc_get_price_to_display
* Price handling
* [Product CRUD] Variable (#12146)
* [Product CRUD] Variable Products
* Handle PR feedback.
* [Product CRUD] Grouped Handling (#12151)
* Handle grouped product saving
* Update routine
* [Product CRUD] Product crud terms (#12149)
* Category and tag id handling
* Replace template functions
* Remove todo
* Handle default name in save function
* Product crud admin save routine (#12174)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Spacing
* Fix comment
* wc_implode_text_attributes helper function
* [Product CRUD] Product crud admin use getters (#12196)
* Initial props
* Work on admin saving
* Set/get attributes
* Atom was moaning about this before but no longer.
* Update get_shipping_class
* WC_Product_Attribute
* Use getter in admin panel
* Fix attribute saving
* Move settings into new files
* Refactor panels and use getters
* Use getters for variation panel
* Revert save variation changes for now
* Add todos
* Fix downloads
* REST API CRUD Updates
* Additional API updates/fixes. Added some todos
* Fix final failing tests and implementing setters/getters and attributes functionality.
* Fix comparison for is_on_sale and remove download_type from WC_Product.
* Add a wc_get_products wrapper.
* Remove the download type input from the product data metabox for downloadable products. (#12221)
* [Product CRUD] Variations - setters, getters and admin. (#12228)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* Feedback fixes
* Implement CRUD in the legacy REST API
* Handle PR feedback
* [Product CRUD] Getter setter proxy methods (#12236)
* Started on variation changes
* Stock functions
* Variation class
* Bulk change ->id to get_id() to fix variation form display
* Missing status
* Fix add to cart
* Start on stored data save
* save variation
* Save_variations
* Variation edit panel
* Save variations code works.
* Remove stored data code and fix save
* Improve legacy class
* wc_bool_to_string
* prepare_set_attributes
* Use wc_get_products
* More feedback fixes
* get_prop implementation in abstract and data classes
* Implement set_prop
* Change handling
* Array key exists
* set_object_read
* Use get_the_terms() instead of wp_get_post_terms()
wp_get_post_terms() is a wrapper around wp_get_object_terms() which does not
use the object cache, and generates a database query every time it is used.
get_the_terms() however can use data from the object cache if present.
* [Product CRUD] Variable, variation, notices, and stock handling (#12277)
* No longer needed
* Remove old todos
* Use getters in admin list
* Related and upsells update for CRUD
* Fix notice in gallery
* Variable fixes and todos
* Context
* Price sync
* Revert variation attributes change
* Return parent data in view context
* Defer term counting
* wc_find_matching_product_variation
* Stock manage tweaks
* Stock fixes
* Correct id
* correct id
* Better sync
* Data logic setter fix
* feedback
* Prevent notices
* Handle image_id from parent
* Fix error
* Remove _wc_save_product_price
* Remove todo
* Fixed wrong variation URLs
* Fixed undefined $image_id in WC_Product_Variation::get_image_id()
* Allow wc_rest_prepare_date_response() handle timestamps
* Updated get methods on REST API for variations
* Use variations CRUD to save variations metadata
* [Product CRUD] Abstract todos (#12305)
* Get dimensions and weights, with soft deprecation
* Product attributes
* Ratings
* Fix read method
* Downloads
* Feedback
* Revert "[Product CRUD] Abstract todos (#12305)"
This reverts commit 9a6136fcf88fec16f97457b7c8a4388f7587bfa2.
* Remove deprecated get_variation_id()
* New default attributes method
* [Product CRUD] Product Datastore (#12317)
* Fix up tests in the product/* folder.
* Handle data store updates for grouped, variable, external, simple, and general data store updates for products.
* Variations & variable changes.
* Update -functions.php calls to use data store.
* Add an interface for the public product data store methods.
* Finished product factory tests
* Correctly delete in the api, fix up some comments, and implement an interface for the public variable methods.
* Fix up delete in all versions of the api
* Handle feedback
* Match protected decloration to parent
* Product crud abstract todos (#12316)
* Get dimensions and weights, with soft deprecation
* Product attributes
* Ratings
* Fix read method
* Downloads
* Feedback
* Fix up store
* Fixed method returning in write context
* Fix error in variation admin
* Check for parent value - fixes tax class
* Remove old/complete todos
* Allow set tax class as "parent"
* Removed duplicated sync
* Fixed wrong variation URLs
* Fixed undefined $image_id in WC_Product_Variation::get_image_id()
* Allow wc_rest_prepare_date_response() handle timestamps
* Updated get methods on REST API for variations
* Use variations CRUD to save variations metadata
* Remove deprecated get_variation_id()
* New default attributes method
* Fixed method returning in write context
* Allow set tax class as "parent"
* Removed duplicated sync
* Fixed coding standards
* TODO is not accurate.
* Should pass WC_Product instancies to WC_Comments methods (#12327)
* Use new method in abstract order class to prevent headers sent issue in tests
* Fixed variable description in REST API
* Updated how create initial product variation
* Fixed a few fatal errors and warnings in Products CRUD (#12329)
* Fixed a few fatal errors and warnings in Products CRUD
* Fixed sync functions
* Add variations CRUD to legacy API (#12331)
* Apply crud to variable products in legacy API v1
* New REST API do not need fallback for default attributes
* Apply variations CRUD to legacy API v2
* Legacy v2 - save default attributes
* Variations in legacy API v2 do not have descriptions
* Fixed legacy API v2 variations params
* Applied variations CRUD to legacy API v3
* Sync before save in legacy apis
* Punc
* Removed API todos
* Removed test
* Products endpoint tweaks (#12354)
* Var type already normalized on CRUD
* Let Product CRUD handle with validation, sanitization and conditional checks
* Set downloads using WC_Product_Download
* Stop try catch exceptions more than one time
* Handle WC_Data_Exception in legacy API
* Complete remove products when fails on creating
* On creating I mean!
* Already have a method to complete delete products
* Fixed standards using WP CodeSniffer
* get_the_terms() returns false when empty
* get_manage_stock returns boolean
@claudiosanches
* Merge conflict
* Variations API endpoint fixes
* Product CRUD improvements (#12359)
* args is not used any more - remove todo
* Added test for attributes
* wc_get_price_excluding_tax usage
* parent usage
* Fix rating counts
* Test fixes
* Cleanup after tests
* Make sure status transition code runs even during API calls, not just in admin.
* Default visibility
* Fix attribute setting in API
* Use get name instead of get title
* variation id usage
* Improved cross sell templates
* variation_data
* Grouped product sync
* Notices
* Sync is not needed in API
* Delete
* Rename interfaces
* Update counts in data store
2016-11-16 12:38:24 +00:00
|
|
|
$attributes = $variation->get_attributes();
|
2015-01-17 05:01:05 +00:00
|
|
|
|
2015-01-19 16:54:28 +00:00
|
|
|
// set preselected id to be used by JS to provide context
|
|
|
|
$preselected_id = $single_product->post->ID;
|
|
|
|
|
2015-01-17 05:01:05 +00:00
|
|
|
// get the parent product object
|
|
|
|
$args = array(
|
|
|
|
'posts_per_page' => 1,
|
|
|
|
'post_type' => 'product',
|
|
|
|
'post_status' => 'publish',
|
|
|
|
'ignore_sticky_posts' => 1,
|
|
|
|
'no_found_rows' => 1,
|
2016-08-27 01:46:45 +00:00
|
|
|
'p' => $single_product->post->post_parent,
|
2015-01-17 05:01:05 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
$single_product = new WP_Query( $args );
|
|
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
|
|
jQuery( document ).ready( function( $ ) {
|
2015-01-19 16:54:28 +00:00
|
|
|
var $variations_form = $( '[data-product-page-preselected-id="<?php echo esc_attr( $preselected_id ); ?>"]' ).find( 'form.variations_form' );
|
2015-01-17 05:01:05 +00:00
|
|
|
|
2016-08-27 04:23:02 +00:00
|
|
|
<?php foreach ( $attributes as $attr => $value ) { ?>
|
2017-01-06 12:45:26 +00:00
|
|
|
$variations_form.find( 'select[name="<?php echo esc_attr( $attr ); ?>"]' ).val( '<?php echo esc_js( $value ); ?>' );
|
2015-01-17 05:01:05 +00:00
|
|
|
<?php } ?>
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<?php
|
|
|
|
}
|
2015-04-13 11:48:40 +00:00
|
|
|
|
2017-07-14 17:06:18 +00:00
|
|
|
// For "is_single" to always make load comments_template() for reviews.
|
|
|
|
$single_product->is_single = true;
|
|
|
|
|
2013-12-29 13:41:48 +00:00
|
|
|
ob_start();
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-04-12 11:33:24 +00:00
|
|
|
global $wp_query;
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-04-12 11:33:24 +00:00
|
|
|
// Backup query object so following loops think this is a product page.
|
|
|
|
$previous_wp_query = $wp_query;
|
|
|
|
$wp_query = $single_product;
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-04-12 11:33:24 +00:00
|
|
|
wp_enqueue_script( 'wc-single-product' );
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-04-12 11:33:24 +00:00
|
|
|
while ( $single_product->have_posts() ) {
|
|
|
|
$single_product->the_post()
|
|
|
|
?>
|
|
|
|
<div class="single-product" data-product-page-preselected-id="<?php echo esc_attr( $preselected_id ); ?>">
|
|
|
|
<?php wc_get_template_part( 'content', 'single-product' ); ?>
|
2012-12-31 18:25:09 +00:00
|
|
|
</div>
|
2017-04-12 11:33:24 +00:00
|
|
|
<?php
|
|
|
|
}
|
2012-12-31 18:25:09 +00:00
|
|
|
|
2017-04-12 11:33:24 +00:00
|
|
|
// restore $previous_wp_query and reset post data.
|
|
|
|
$wp_query = $previous_wp_query;
|
2012-12-31 18:25:09 +00:00
|
|
|
wp_reset_postdata();
|
|
|
|
|
2013-01-29 13:01:09 +00:00
|
|
|
return '<div class="woocommerce">' . ob_get_clean() . '</div>';
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Show messages.
|
2012-12-31 18:25:09 +00:00
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 13:55:18 +00:00
|
|
|
public static function shop_messages() {
|
2012-12-31 18:25:09 +00:00
|
|
|
ob_start();
|
2013-11-13 04:34:55 +00:00
|
|
|
wc_print_notices();
|
2013-10-17 14:29:49 +00:00
|
|
|
return '<div class="woocommerce">' . ob_get_clean() . '</div>';
|
2012-12-31 18:25:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* woocommerce_order_by_rating_post_clauses function.
|
|
|
|
*
|
2013-11-27 09:03:47 +00:00
|
|
|
* @param array $args
|
|
|
|
* @return array
|
2012-12-31 18:25:09 +00:00
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function order_by_rating_post_clauses( $args ) {
|
2012-12-31 18:25:09 +00:00
|
|
|
global $wpdb;
|
|
|
|
|
2015-04-13 11:48:40 +00:00
|
|
|
$args['where'] .= " AND $wpdb->commentmeta.meta_key = 'rating' ";
|
|
|
|
$args['join'] .= "LEFT JOIN $wpdb->comments ON($wpdb->posts.ID = $wpdb->comments.comment_post_ID) LEFT JOIN $wpdb->commentmeta ON($wpdb->comments.comment_ID = $wpdb->commentmeta.comment_id)";
|
2012-12-31 18:25:09 +00:00
|
|
|
$args['orderby'] = "$wpdb->commentmeta.meta_value DESC";
|
|
|
|
$args['groupby'] = "$wpdb->posts.ID";
|
|
|
|
|
|
|
|
return $args;
|
|
|
|
}
|
2013-03-03 14:51:25 +00:00
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* List products with an attribute shortcode.
|
|
|
|
* Example [product_attribute attribute='color' filter='black'].
|
2013-03-03 14:51:25 +00:00
|
|
|
*
|
|
|
|
* @param array $atts
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 11:55:40 +00:00
|
|
|
public static function product_attribute( $atts ) {
|
2014-11-20 02:14:06 +00:00
|
|
|
$atts = shortcode_atts( array(
|
2013-03-10 13:30:48 +00:00
|
|
|
'per_page' => '12',
|
|
|
|
'columns' => '4',
|
|
|
|
'orderby' => 'title',
|
|
|
|
'order' => 'asc',
|
|
|
|
'attribute' => '',
|
2016-08-27 01:46:45 +00:00
|
|
|
'filter' => '',
|
2016-07-15 07:49:44 +00:00
|
|
|
), $atts, 'product_attribute' );
|
2013-03-03 14:51:25 +00:00
|
|
|
|
2015-04-13 11:48:40 +00:00
|
|
|
$query_args = array(
|
2013-03-10 13:30:48 +00:00
|
|
|
'post_type' => 'product',
|
|
|
|
'post_status' => 'publish',
|
|
|
|
'ignore_sticky_posts' => 1,
|
2014-11-20 02:14:06 +00:00
|
|
|
'posts_per_page' => $atts['per_page'],
|
|
|
|
'orderby' => $atts['orderby'],
|
|
|
|
'order' => $atts['order'],
|
2015-04-13 11:48:40 +00:00
|
|
|
'meta_query' => WC()->query->get_meta_query(),
|
2016-12-08 10:56:45 +00:00
|
|
|
'tax_query' => WC()->query->get_tax_query(),
|
|
|
|
);
|
|
|
|
|
|
|
|
$query_args['tax_query'][] = array(
|
|
|
|
'taxonomy' => strstr( $atts['attribute'], 'pa_' ) ? sanitize_title( $atts['attribute'] ) : 'pa_' . sanitize_title( $atts['attribute'] ),
|
|
|
|
'terms' => array_map( 'sanitize_title', explode( ',', $atts['filter'] ) ),
|
|
|
|
'field' => 'slug',
|
2013-03-03 14:51:25 +00:00
|
|
|
);
|
|
|
|
|
2015-04-13 11:48:40 +00:00
|
|
|
return self::product_loop( $query_args, $atts, 'product_attribute' );
|
2013-03-03 14:51:25 +00:00
|
|
|
}
|
2013-04-15 07:36:30 +00:00
|
|
|
|
2013-11-28 17:59:09 +00:00
|
|
|
/**
|
2015-10-09 01:53:15 +00:00
|
|
|
* List related products.
|
2013-11-28 17:59:09 +00:00
|
|
|
* @param array $atts
|
|
|
|
* @return string
|
|
|
|
*/
|
2013-10-23 13:55:18 +00:00
|
|
|
public static function related_products( $atts ) {
|
2013-05-16 12:39:53 +00:00
|
|
|
$atts = shortcode_atts( array(
|
2015-09-11 08:53:26 +00:00
|
|
|
'per_page' => '4',
|
2015-10-09 01:53:15 +00:00
|
|
|
'columns' => '4',
|
2016-08-27 01:46:45 +00:00
|
|
|
'orderby' => 'rand',
|
2016-07-15 07:49:44 +00:00
|
|
|
), $atts, 'related_products' );
|
2013-05-16 12:39:53 +00:00
|
|
|
|
2013-04-15 07:36:30 +00:00
|
|
|
ob_start();
|
|
|
|
|
2016-06-08 09:39:28 +00:00
|
|
|
// Rename arg
|
|
|
|
$atts['posts_per_page'] = absint( $atts['per_page'] );
|
|
|
|
|
2013-11-25 14:16:26 +00:00
|
|
|
woocommerce_related_products( $atts );
|
2013-04-15 07:36:30 +00:00
|
|
|
|
|
|
|
return ob_get_clean();
|
|
|
|
}
|
2015-09-16 07:26:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a tax_query index to the query to filter by category.
|
|
|
|
*
|
|
|
|
* @param array $args
|
|
|
|
* @param string $category
|
|
|
|
* @param string $operator
|
|
|
|
* @return array;
|
|
|
|
* @access private
|
|
|
|
*/
|
|
|
|
private static function _maybe_add_category_args( $args, $category, $operator ) {
|
|
|
|
if ( ! empty( $category ) ) {
|
2016-12-08 10:56:45 +00:00
|
|
|
if ( empty( $args['tax_query'] ) ) {
|
|
|
|
$args['tax_query'] = array();
|
|
|
|
}
|
|
|
|
$args['tax_query'][] = array(
|
2015-09-16 07:26:30 +00:00
|
|
|
array(
|
|
|
|
'taxonomy' => 'product_cat',
|
|
|
|
'terms' => array_map( 'sanitize_title', explode( ',', $category ) ),
|
|
|
|
'field' => 'slug',
|
2016-08-27 01:46:45 +00:00
|
|
|
'operator' => $operator,
|
2016-08-27 02:08:49 +00:00
|
|
|
),
|
2015-09-16 07:26:30 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $args;
|
|
|
|
}
|
2013-11-02 22:12:50 +00:00
|
|
|
}
|