Shortcode tweak + readme #2570

This commit is contained in:
Mike Jolley 2013-03-10 13:30:48 +00:00
parent eccd0cdba1
commit 3cef861696
2 changed files with 26 additions and 29 deletions

View File

@ -967,34 +967,30 @@ class WC_Shortcodes {
function product_attribute( $atts ) {
global $woocommerce_loop;
if ( empty( $atts ) ) return;
extract( shortcode_atts( array(
'per_page' => '12',
'columns' => '4',
'orderby' => 'title',
'order' => 'asc',
'attribute' => '',
'filter' => ''
), $atts ) );
'per_page' => '12',
'columns' => '4',
'orderby' => 'title',
'order' => 'asc',
'attribute' => '',
'filter' => ''
), $atts ) );
$attribute = 'pa_' . sanitize_title($attribute);
$filter = sanitize_title($filter);
$attribute = strstr( $attribute, 'pa_' ) ? sanitize_title( $attribute ) : 'pa_' . sanitize_title( $attribute );
$filter = sanitize_title( $filter );
if ( ! $attribute || ! $filter ) return;
$args = array(
'post_type' => 'product',
'post_status' => 'publish',
'ignore_sticky_posts' => 1,
'orderby' => $orderby,
'order' => $order,
'posts_per_page' => $per_page,
'meta_query' => array(
$args = array(
'post_type' => 'product',
'post_status' => 'publish',
'ignore_sticky_posts' => 1,
'posts_per_page' => $per_page,
'orderby' => $orderby,
'order' => $order,
'meta_query' => array(
array(
'key' => '_visibility',
'value' => array('catalog', 'visible'),
'compare' => 'IN'
'key' => '_visibility',
'value' => array('catalog', 'visible'),
'compare' => 'IN'
)
),
'tax_query' => array(
@ -1006,7 +1002,7 @@ class WC_Shortcodes {
)
);
ob_start();
ob_start();
$products = new WP_Query( $args );
@ -1014,7 +1010,7 @@ class WC_Shortcodes {
if ( $products->have_posts() ) : ?>
<ul class="products">
<?php woocommerce_product_loop_start(); ?>
<?php while ( $products->have_posts() ) : $products->the_post(); ?>
@ -1022,12 +1018,12 @@ class WC_Shortcodes {
<?php endwhile; // end of the loop. ?>
</ul>
<?php woocommerce_product_loop_end(); ?>
<?php endif;
wp_reset_query();
wp_reset_postdata();
return ob_get_clean();
return '<div class="woocommerce">' . ob_get_clean() . '</div>';
}
}

View File

@ -166,6 +166,7 @@ Yes you can! Join in on our [GitHub repository](http://github.com/woothemes/wooc
== Changelog ==
= X =
* Feature - Added products by attribute shortcode, e.g. [product_attribute attribute="color" filter="blue"]
* Tweak - Made coupon label more clear.
* Tweak - woocommerce_cart_redirect_after_error hook.
* Tweak - woocommerce_cancel_unpaid_order hook to control if an order should be cancelled (if unpaid)