woocommerce/templates/single-product/add-to-cart/quantity.php

13 lines
695 B
PHP
Raw Normal View History

2011-12-11 01:08:33 +00:00
<?php
/**
2012-08-14 18:05:45 +00:00
* Single product quantity inputs
*
* @author WooThemes
* @package WooCommerce/Templates
2012-12-03 19:19:58 +00:00
* @version 2.0.0
2011-12-11 01:08:33 +00:00
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
2011-12-11 01:08:33 +00:00
?>
2013-04-08 18:35:10 +00:00
<div class="quantity"><input type="number" step="<?php echo esc_attr( $step ); ?>" <?php if ( is_numeric( $min_value ) ) : ?>min="<?php echo esc_attr( $min_value ); ?>"<?php endif; ?> <?php if ( is_numeric( $max_value ) ) : ?>max="<?php echo esc_attr( $max_value ); ?>"<?php endif; ?> name="<?php echo esc_attr( $input_name ); ?>" value="<?php echo esc_attr( $input_value ); ?>" title="<?php _ex( 'Qty', 'Product quantity input tooltip', 'woocommerce' ) ?>" class="input-text qty text" /></div>