woocommerce/templates/loop/sorting.php

37 lines
1.2 KiB
PHP
Raw Normal View History

2011-12-11 01:10:24 +00:00
<?php
/**
* Sorting
2012-08-14 18:05:45 +00:00
*
* @author WooThemes
* @package WooCommerce/Templates
2012-12-03 19:19:58 +00:00
* @version 2.0.0
2011-12-11 01:10:24 +00:00
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2013-01-07 14:17:41 +00:00
global $woocommerce, $wp_query;
if ( ! woocommerce_products_will_display() || 1 == $wp_query->found_posts )
return;
2011-12-11 01:10:24 +00:00
?>
<form class="woocommerce-ordering" method="get">
<select name="orderby" class="orderby">
2011-12-11 01:10:24 +00:00
<?php
$catalog_orderby = apply_filters( 'woocommerce_catalog_orderby', array(
'menu_order' => __( 'Default sorting', 'woocommerce' ),
'popularity' => __( 'Sort by popularity', 'woocommerce' ),
'rating' => __( 'Sort by average rating', 'woocommerce' ),
'date' => __( 'Sort by newness', 'woocommerce' ),
'price' => __( 'Sort by price: low to high', 'woocommerce' ),
'price-desc' => __( 'Sort by price: high to low', 'woocommerce' )
) );
2011-12-11 01:10:24 +00:00
if ( get_option( 'woocommerce_enable_review_rating' ) == 'no' )
unset( $catalog_orderby['rating'] );
2012-08-14 18:05:45 +00:00
foreach ( $catalog_orderby as $id => $name )
echo '<option value="' . esc_attr( $id ) . '" ' . selected( $orderby, $id, false ) . '>' . esc_attr( $name ) . '</option>';
2011-12-11 01:10:24 +00:00
?>
</select>
</form>