woocommerce/shortcodes/shortcodes-init.php

330 lines
7.5 KiB
PHP
Raw Normal View History

2011-08-10 17:11:11 +00:00
<?php
/**
* Shortcodes init
*
* Init main shortcodes, and add a few others such as recent products.
*
* @package WooCommerce
* @category Shortcode
* @author WooThemes
*/
include_once('shortcode-cart.php');
include_once('shortcode-checkout.php');
include_once('shortcode-my_account.php');
include_once('shortcode-order_tracking.php');
include_once('shortcode-pay.php');
include_once('shortcode-thankyou.php');
/**
* List products in a category shortcode
**/
function woocommerce_product_category($atts){
global $woocommerce_loop;
if (empty($atts)) return;
extract(shortcode_atts(array(
'per_page' => '12',
'columns' => '4',
'orderby' => 'title',
'order' => 'asc',
'category' => ''
), $atts));
if (!$category) return;
$woocommerce_loop['columns'] = $columns;
$args = array(
'post_type' => 'product',
'post_status' => 'publish',
'ignore_sticky_posts' => 1,
'orderby' => $orderby,
'order' => $order,
'posts_per_page' => $per_page,
'meta_query' => array(
array(
'key' => 'visibility',
'value' => array('catalog', 'visible'),
'compare' => 'IN'
)
),
'tax_query' => array(
array(
'taxonomy' => 'product_cat',
'terms' => array( esc_attr($category) ),
'field' => 'slug',
'operator' => 'IN'
)
)
);
query_posts($args);
ob_start();
woocommerce_get_template_part( 'loop', 'shop' );
wp_reset_query();
return ob_get_clean();
}
2011-08-10 17:11:11 +00:00
/**
* Recent Products shortcode
**/
function woocommerce_recent_products( $atts ) {
global $woocommerce_loop;
2011-08-10 17:11:11 +00:00
extract(shortcode_atts(array(
'per_page' => '12',
'columns' => '4',
'orderby' => 'date',
'order' => 'desc'
), $atts));
$woocommerce_loop['columns'] = $columns;
2011-08-10 17:11:11 +00:00
$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'
)
)
);
query_posts($args);
ob_start();
woocommerce_get_template_part( 'loop', 'shop' );
wp_reset_query();
return ob_get_clean();
}
/**
* List multiple products shortcode
**/
function woocommerce_products($atts){
global $woocommerce_loop;
2011-08-10 17:11:11 +00:00
if (empty($atts)) return;
extract(shortcode_atts(array(
'columns' => '4',
'orderby' => 'title',
'order' => 'asc'
), $atts));
$woocommerce_loop['columns'] = $columns;
2011-08-10 17:11:11 +00:00
$args = array(
'post_type' => 'product',
'post_status' => 'publish',
'ignore_sticky_posts' => 1,
'orderby' => $orderby,
'order' => $order,
'meta_query' => array(
array(
'key' => 'visibility',
'value' => array('catalog', 'visible'),
'compare' => 'IN'
)
)
);
if(isset($atts['skus'])){
$skus = explode(',', $atts['skus']);
array_walk($skus, create_function('&$val', '$val = trim($val);'));
$args['meta_query'][] = array(
'key' => 'sku',
'value' => $skus,
'compare' => 'IN'
);
}
if(isset($atts['ids'])){
$ids = explode(',', $atts['ids']);
array_walk($ids, create_function('&$val', '$val = trim($val);'));
$args['post__in'] = $ids;
}
query_posts($args);
ob_start();
woocommerce_get_template_part( 'loop', 'shop' );
wp_reset_query();
return ob_get_clean();
}
/**
* Display a single prodcut
**/
function woocommerce_product($atts){
if (empty($atts)) return;
$args = array(
'post_type' => 'product',
'posts_per_page' => 1,
'post_status' => 'publish',
'meta_query' => array(
array(
'key' => 'visibility',
'value' => array('catalog', 'visible'),
'compare' => 'IN'
)
)
);
if(isset($atts['sku'])){
$args['meta_query'][] = array(
'key' => 'sku',
'value' => $atts['sku'],
'compare' => '='
);
}
if(isset($atts['id'])){
$args['p'] = $atts['id'];
}
query_posts($args);
ob_start();
woocommerce_get_template_part( 'loop', 'shop' );
wp_reset_query();
return ob_get_clean();
}
/**
* Display a single prodcut price + cart button
**/
function woocommerce_product_add_to_cart($atts){
if (empty($atts)) return;
2011-11-07 19:24:38 +00:00
global $wpdb;
if (!$atts['style']) $atts['style'] = 'border:4px solid #ccc; padding: 12px;';
2011-11-07 19:24:38 +00:00
if ($atts['id']) :
$product_data = get_post( $atts['id'] );
elseif ($atts['sku']) :
$product_id = $wpdb->get_var($wpdb->prepare("SELECT post_id FROM $wpdb->postmeta WHERE meta_key='sku' AND meta_value='%s' LIMIT 1", $atts['sku']));
$product_data = get_post( $product_id );
else :
return;
endif;
2011-11-07 19:24:38 +00:00
if ($product_data->post_type!=='product') return;
2011-11-07 19:24:38 +00:00
$_product = &new woocommerce_product( $product_data->ID );
2011-11-07 19:24:38 +00:00
if (!$_product->is_visible()) continue;
ob_start();
?>
<p class="product" style="<?php echo $atts['style']; ?>">
<?php echo $_product->get_price_html(); ?>
2011-11-07 19:24:38 +00:00
<?php woocommerce_template_loop_add_to_cart( $product_data, $_product ); ?>
</p><?php
return ob_get_clean();
}
2011-12-05 09:53:20 +00:00
/**
* Get the add to cart URL for a product
**/
function woocommerce_product_add_to_cart_url( $atts ){
if (empty($atts)) return;
global $wpdb;
if ($atts['id']) :
$product_data = get_post( $atts['id'] );
elseif ($atts['sku']) :
$product_id = $wpdb->get_var($wpdb->prepare("SELECT post_id FROM $wpdb->postmeta WHERE meta_key='sku' AND meta_value='%s' LIMIT 1", $atts['sku']));
$product_data = get_post( $product_id );
else :
return;
endif;
if ($product_data->post_type!=='product') return;
$_product = &new woocommerce_product( $product_data->ID );
return esc_url( $_product->add_to_cart_url() );
}
2011-08-10 17:11:11 +00:00
/**
* Output featured products
**/
function woocommerce_featured_products( $atts ) {
global $woocommerce_loop;
2011-08-10 17:11:11 +00:00
extract(shortcode_atts(array(
'per_page' => '12',
'columns' => '4',
'orderby' => 'date',
'order' => 'desc'
), $atts));
$woocommerce_loop['columns'] = $columns;
2011-08-10 17:11:11 +00:00
$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'
),
array(
'key' => 'featured',
'value' => 'yes'
)
)
);
query_posts($args);
ob_start();
woocommerce_get_template_part( 'loop', 'shop' );
wp_reset_query();
return ob_get_clean();
}
/**
* Shortcode creation
**/
add_shortcode('product_category', 'woocommerce_product_category');
2011-08-10 17:11:11 +00:00
add_shortcode('product', 'woocommerce_product');
add_shortcode('add_to_cart', 'woocommerce_product_add_to_cart');
2011-12-05 09:53:20 +00:00
add_shortcode('add_to_cart_url', 'woocommerce_product_add_to_cart_url');
2011-08-10 17:11:11 +00:00
add_shortcode('products', 'woocommerce_products');
add_shortcode('recent_products', 'woocommerce_recent_products');
add_shortcode('featured_products', 'woocommerce_featured_products');
add_shortcode('woocommerce_cart', 'get_woocommerce_cart');
add_shortcode('woocommerce_checkout', 'get_woocommerce_checkout');
add_shortcode('woocommerce_order_tracking', 'get_woocommerce_order_tracking');
add_shortcode('woocommerce_my_account', 'get_woocommerce_my_account');
add_shortcode('woocommerce_edit_address', 'get_woocommerce_edit_address');
add_shortcode('woocommerce_change_password', 'get_woocommerce_change_password');
add_shortcode('woocommerce_view_order', 'get_woocommerce_view_order');
add_shortcode('woocommerce_pay', 'get_woocommerce_pay');
add_shortcode('woocommerce_thankyou', 'get_woocommerce_thankyou');