woocommerce/shortcodes/shortcode-init.php

565 lines
12 KiB
PHP
Raw Normal View History

2011-08-10 17:11:11 +00:00
<?php
/**
* Shortcodes init
2012-08-12 12:15:27 +00:00
*
2011-08-10 17:11:11 +00:00
* 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;
2012-08-12 12:15:27 +00:00
if (empty($atts)) return;
2012-08-12 12:15:27 +00:00
extract(shortcode_atts(array(
'per_page' => '12',
'columns' => '4',
'orderby' => 'title',
'order' => 'asc',
'category' => ''
), $atts));
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
if ( ! $category ) return;
2012-08-12 12:15:27 +00:00
$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(
2011-12-24 17:05:51 +00:00
'key' => '_visibility',
'value' => array('catalog', 'visible'),
'compare' => 'IN'
)
),
'tax_query' => array(
array(
'taxonomy' => 'product_cat',
'terms' => array( esc_attr($category) ),
'field' => 'slug',
'operator' => 'IN'
)
)
);
2012-08-12 12:15:27 +00:00
ob_start();
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
$products = new WP_Query( $args );
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
$woocommerce_loop['columns'] = $columns;
if ( $products->have_posts() ) : ?>
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
<ul class="products">
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
<?php while ( $products->have_posts() ) : $products->the_post(); ?>
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
<?php woocommerce_get_template_part( 'content', 'product' ); ?>
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
<?php endwhile; // end of the loop. ?>
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
</ul>
2012-08-12 12:15:27 +00:00
<?php endif;
2012-07-11 14:13:06 +00:00
wp_reset_query();
2012-08-12 12:15:27 +00:00
return ob_get_clean();
}
/**
* List all (or limited) product categories
**/
2012-08-12 12:15:27 +00:00
function woocommerce_product_categories( $atts ) {
global $woocommerce_loop;
extract( shortcode_atts( array (
'number' => null,
'orderby' => 'name',
'order' => 'ASC',
'columns' => '4',
'hide_empty' => 1
), $atts ) );
if ( isset( $atts[ 'ids' ] ) ) {
$ids = explode( ',', $atts[ 'ids' ] );
$ids = array_map( 'trim', $ids );
} else {
$ids = array();
}
$hide_empty = ( $hide_empty == true || $hide_empty == 1 ) ? 1 : 0;
2012-08-12 12:15:27 +00:00
$args = array(
'number' => $number,
'orderby' => $orderby,
'order' => $order,
'hide_empty' => $hide_empty,
'include' => $ids
);
2012-08-12 12:15:27 +00:00
2012-07-19 21:13:06 +00:00
$product_categories = get_terms( 'product_cat', $args );
$woocommerce_loop['columns'] = $columns;
2012-08-12 12:15:27 +00:00
ob_start();
2012-08-12 12:15:27 +00:00
2012-07-19 21:20:44 +00:00
// Reset loop/columns globals when starting a new loop
$woocommerce_loop['loop'] = $woocommerce_loop['column'] = '';
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
if ( $product_categories ) {
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
echo '<ul class="products">';
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
foreach ( $product_categories as $category ) {
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
woocommerce_get_template( 'content-product_cat.php', array(
'category' => $category
) );
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
}
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
echo '</ul>';
}
wp_reset_query();
2012-08-12 12:15:27 +00:00
return ob_get_clean();
}
2011-08-10 17:11:11 +00:00
/**
* Recent Products shortcode
**/
function woocommerce_recent_products( $atts ) {
2012-08-12 12:15:27 +00:00
global $woocommerce_loop;
2012-08-12 12:15:27 +00:00
2011-08-10 17:11:11 +00:00
extract(shortcode_atts(array(
'per_page' => '12',
'columns' => '4',
'orderby' => 'date',
'order' => 'desc'
), $atts));
2012-08-12 12:15:27 +00:00
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(
2011-12-24 17:05:51 +00:00
'key' => '_visibility',
2011-08-10 17:11:11 +00:00
'value' => array('catalog', 'visible'),
'compare' => 'IN'
)
)
);
2012-08-12 12:15:27 +00:00
2011-08-10 17:11:11 +00:00
ob_start();
2012-07-11 14:13:06 +00:00
$products = new WP_Query( $args );
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
$woocommerce_loop['columns'] = $columns;
if ( $products->have_posts() ) : ?>
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
<ul class="products">
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
<?php while ( $products->have_posts() ) : $products->the_post(); ?>
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
<?php woocommerce_get_template_part( 'content', 'product' ); ?>
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
<?php endwhile; // end of the loop. ?>
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
</ul>
2012-08-12 12:15:27 +00:00
<?php endif;
2012-07-11 14:13:06 +00:00
2011-08-10 17:11:11 +00:00
wp_reset_query();
2012-08-12 12:15:27 +00:00
2011-08-10 17:11:11 +00:00
return ob_get_clean();
}
/**
* List multiple products shortcode
**/
function woocommerce_products($atts){
global $woocommerce_loop;
2012-08-12 12:15:27 +00:00
2011-08-10 17:11:11 +00:00
if (empty($atts)) return;
2012-08-12 12:15:27 +00:00
2011-08-10 17:11:11 +00:00
extract(shortcode_atts(array(
'columns' => '4',
'orderby' => 'title',
'order' => 'asc'
), $atts));
2012-08-12 12:15:27 +00:00
2011-08-10 17:11:11 +00:00
$args = array(
'post_type' => 'product',
'post_status' => 'publish',
'ignore_sticky_posts' => 1,
'orderby' => $orderby,
'order' => $order,
2012-04-11 09:45:30 +00:00
'posts_per_page' => -1,
2011-08-10 17:11:11 +00:00
'meta_query' => array(
array(
2012-02-06 16:49:18 +00:00
'key' => '_visibility',
'value' => array('catalog', 'visible'),
'compare' => 'IN'
2011-08-10 17:11:11 +00:00
)
)
);
2012-08-12 12:15:27 +00:00
2011-08-10 17:11:11 +00:00
if(isset($atts['skus'])){
$skus = explode(',', $atts['skus']);
2012-02-06 16:49:18 +00:00
$skus = array_map('trim', $skus);
2011-08-10 17:11:11 +00:00
$args['meta_query'][] = array(
2012-02-06 16:49:18 +00:00
'key' => '_sku',
'value' => $skus,
'compare' => 'IN'
2011-08-10 17:11:11 +00:00
);
}
2012-08-12 12:15:27 +00:00
2011-08-10 17:11:11 +00:00
if(isset($atts['ids'])){
$ids = explode(',', $atts['ids']);
2012-02-06 16:49:18 +00:00
$ids = array_map('trim', $ids);
2011-08-10 17:11:11 +00:00
$args['post__in'] = $ids;
}
2012-08-12 12:15:27 +00:00
2011-08-10 17:11:11 +00:00
ob_start();
2012-07-11 14:13:06 +00:00
$products = new WP_Query( $args );
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
$woocommerce_loop['columns'] = $columns;
if ( $products->have_posts() ) : ?>
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
<ul class="products">
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
<?php while ( $products->have_posts() ) : $products->the_post(); ?>
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
<?php woocommerce_get_template_part( 'content', 'product' ); ?>
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
<?php endwhile; // end of the loop. ?>
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
</ul>
2012-08-12 12:15:27 +00:00
<?php endif;
2012-07-11 14:13:06 +00:00
2011-08-10 17:11:11 +00:00
wp_reset_query();
2012-07-11 14:13:06 +00:00
2011-08-10 17:11:11 +00:00
return ob_get_clean();
}
/**
* Display a single prodcut
**/
function woocommerce_product($atts){
if (empty($atts)) return;
2012-08-12 12:15:27 +00:00
2011-08-10 17:11:11 +00:00
$args = array(
'post_type' => 'product',
'posts_per_page' => 1,
2012-03-14 11:41:25 +00:00
'no_found_rows' => 1,
2011-08-10 17:11:11 +00:00
'post_status' => 'publish',
'meta_query' => array(
array(
2011-12-24 17:05:51 +00:00
'key' => '_visibility',
2011-08-10 17:11:11 +00:00
'value' => array('catalog', 'visible'),
'compare' => 'IN'
)
)
);
2012-08-12 12:15:27 +00:00
2011-08-10 17:11:11 +00:00
if(isset($atts['sku'])){
$args['meta_query'][] = array(
2011-12-24 17:05:51 +00:00
'key' => '_sku',
2011-08-10 17:11:11 +00:00
'value' => $atts['sku'],
'compare' => '='
);
}
2012-08-12 12:15:27 +00:00
2011-08-10 17:11:11 +00:00
if(isset($atts['id'])){
$args['p'] = $atts['id'];
}
2012-08-12 12:15:27 +00:00
2011-08-10 17:11:11 +00:00
ob_start();
2012-07-11 14:13:06 +00:00
$products = new WP_Query( $args );
if ( $products->have_posts() ) : ?>
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
<ul class="products">
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
<?php while ( $products->have_posts() ) : $products->the_post(); ?>
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
<?php woocommerce_get_template_part( 'content', 'product' ); ?>
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
<?php endwhile; // end of the loop. ?>
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
</ul>
2012-08-12 12:15:27 +00:00
<?php endif;
2012-07-11 14:13:06 +00:00
2011-08-10 17:11:11 +00:00
wp_reset_query();
2012-07-11 14:13:06 +00:00
2012-08-12 12:15:27 +00:00
return ob_get_clean();
2011-08-10 17:11:11 +00:00
}
/**
* Display a single prodcut price + cart button
**/
function woocommerce_product_add_to_cart($atts){
if (empty($atts)) return;
2012-08-12 12:15:27 +00:00
2012-01-03 17:23:42 +00:00
global $wpdb, $woocommerce;
2012-08-12 12:15:27 +00:00
2012-01-03 17:23:42 +00:00
if (!isset($atts['style'])) $atts['style'] = 'border:4px solid #ccc; padding: 12px;';
2012-08-12 12:15:27 +00:00
2011-11-07 19:24:38 +00:00
if ($atts['id']) :
$product_data = get_post( $atts['id'] );
elseif ($atts['sku']) :
2011-12-24 17:05:51 +00:00
$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']));
2011-11-07 19:24:38 +00:00
$product_data = get_post( $product_id );
else :
return;
endif;
2012-08-12 12:15:27 +00:00
if ($product_data->post_type=='product') {
2012-08-12 12:15:27 +00:00
$product = $woocommerce->setup_product_data( $product_data );
2012-08-12 12:15:27 +00:00
ob_start();
?>
<p class="product" style="<?php echo $atts['style']; ?>">
2012-08-12 12:15:27 +00:00
<?php echo $product->get_price_html(); ?>
2012-08-12 12:15:27 +00:00
<?php woocommerce_template_loop_add_to_cart(); ?>
2012-08-12 12:15:27 +00:00
</p><?php
return ob_get_clean();
} elseif ($product_data->post_type=='product_variation') {
2012-08-12 12:15:27 +00:00
$product = new WC_Product( $product_data->post_parent );
2012-08-12 12:15:27 +00:00
$GLOBALS['product'] = $product;
2012-08-12 12:15:27 +00:00
$variation = new WC_Product_Variation( $product_data->ID );
2012-08-12 12:15:27 +00:00
ob_start();
?>
<p class="product product-variation" style="<?php echo $atts['style']; ?>">
2012-08-12 12:15:27 +00:00
<?php echo $product->get_price_html(); ?>
2012-08-12 12:15:27 +00:00
<?php
2012-08-12 12:15:27 +00:00
$link = $product->add_to_cart_url();
2012-08-12 12:15:27 +00:00
$label = apply_filters('add_to_cart_text', __('Add to cart', 'woocommerce'));
2012-08-12 12:15:27 +00:00
$link = add_query_arg( 'variation_id', $variation->variation_id, $link );
2012-08-12 12:15:27 +00:00
foreach ($variation->variation_data as $key => $data) {
if ($data) $link = add_query_arg( $key, $data, $link );
}
2012-08-12 12:15:27 +00:00
2012-04-11 20:21:40 +00:00
printf('<a href="%s" rel="nofollow" data-product_id="%s" class="button add_to_cart_button product_type_%s">%s</a>', esc_url( $link ), $product->id, $product->product_type, $label);
2012-08-12 12:15:27 +00:00
?>
2012-08-12 12:15:27 +00:00
</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;
2012-08-12 12:15:27 +00:00
2011-12-05 09:53:20 +00:00
global $wpdb;
2012-08-12 12:15:27 +00:00
2011-12-05 09:53:20 +00:00
if ($atts['id']) :
$product_data = get_post( $atts['id'] );
elseif ($atts['sku']) :
2011-12-24 17:05:51 +00:00
$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']));
2011-12-05 09:53:20 +00:00
$product_data = get_post( $product_id );
else :
return;
endif;
2012-08-12 12:15:27 +00:00
2011-12-05 09:53:20 +00:00
if ($product_data->post_type!=='product') return;
2012-08-12 12:15:27 +00:00
$_product = new WC_Product( $product_data->ID );
2011-12-05 09:53:20 +00:00
return esc_url( $_product->add_to_cart_url() );
}
2011-08-10 17:11:11 +00:00
/**
* Output featured products
**/
function woocommerce_featured_products( $atts ) {
2012-08-12 12:15:27 +00:00
global $woocommerce_loop;
2012-08-12 12:15:27 +00:00
2011-08-10 17:11:11 +00:00
extract(shortcode_atts(array(
'per_page' => '12',
'columns' => '4',
'orderby' => 'date',
'order' => 'desc'
), $atts));
2012-08-12 12:15:27 +00:00
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(
2011-12-24 17:05:51 +00:00
'key' => '_visibility',
2011-08-10 17:11:11 +00:00
'value' => array('catalog', 'visible'),
'compare' => 'IN'
),
array(
2011-12-24 17:05:51 +00:00
'key' => '_featured',
2011-08-10 17:11:11 +00:00
'value' => 'yes'
)
)
);
2012-07-11 14:13:06 +00:00
2011-08-10 17:11:11 +00:00
ob_start();
2012-07-11 14:13:06 +00:00
$products = new WP_Query( $args );
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
$woocommerce_loop['columns'] = $columns;
if ( $products->have_posts() ) : ?>
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
<ul class="products">
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
<?php while ( $products->have_posts() ) : $products->the_post(); ?>
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
<?php woocommerce_get_template_part( 'content', 'product' ); ?>
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
<?php endwhile; // end of the loop. ?>
2012-08-12 12:15:27 +00:00
2012-07-11 14:13:06 +00:00
</ul>
2012-08-12 12:15:27 +00:00
<?php endif;
2012-07-11 14:13:06 +00:00
2011-08-10 17:11:11 +00:00
wp_reset_query();
2012-08-12 12:15:27 +00:00
2011-08-10 17:11:11 +00:00
return ob_get_clean();
}
/**
* Show a single product page
**/
2012-07-11 10:23:31 +00:00
function woocommerce_product_page_shortcode( $atts ) {
if (empty($atts)) return;
2012-08-12 12:15:27 +00:00
if (!$atts['id'] && !$atts['sku']) return;
2012-08-12 12:15:27 +00:00
$args = array(
'posts_per_page' => 1,
'post_type' => 'product',
'post_status' => 'publish',
'ignore_sticky_posts' => 1,
2012-03-14 11:41:25 +00:00
'no_found_rows' => 1
);
if(isset($atts['sku'])){
$args['meta_query'][] = array(
'key' => '_sku',
'value' => $atts['sku'],
'compare' => '='
);
}
if(isset($atts['id'])){
$args['p'] = $atts['id'];
}
2012-08-12 12:15:27 +00:00
2012-07-11 10:23:31 +00:00
$single_product = new WP_Query( $args );
ob_start();
2012-08-12 12:15:27 +00:00
while ( $single_product->have_posts() ) : $single_product->the_post(); wp_enqueue_script( 'wc-single-product' ); ?>
2012-07-11 10:23:31 +00:00
<div class="single-product">
2012-08-12 12:15:27 +00:00
2012-07-11 12:50:24 +00:00
<?php woocommerce_get_template_part( 'content', 'single-product' ); ?>
2012-08-12 12:15:27 +00:00
2012-07-11 10:23:31 +00:00
</div>
<?php endwhile; // end of the loop.
wp_reset_query();
2012-08-12 12:15:27 +00:00
return ob_get_clean();
2012-08-12 12:15:27 +00:00
}
/**
* Show messages
**/
function woocommerce_messages_shortcode() {
ob_start();
2012-08-12 12:15:27 +00:00
woocommerce_show_messages();
2012-08-12 12:15:27 +00:00
return ob_get_clean();
}
2011-08-10 17:11:11 +00:00
/**
* Shortcode creation
**/
add_shortcode('product', 'woocommerce_product');
add_shortcode('product_page', 'woocommerce_product_page_shortcode');
add_shortcode('product_category', 'woocommerce_product_category');
add_shortcode('product_categories', 'woocommerce_product_categories');
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');
add_shortcode('woocommerce_messages', 'woocommerce_messages_shortcode');