কমন কোড
<body <?php body_class(); ?>>
<?php global $woocommerce; ?>
HTML কোড :
<a href="">
<span class="glyphicon glyphicon-shopping-cart"> 2 Items - $170</span>
</a>
PHP কোড :
<?php echo $woocommerce->cart->get_cart_url(); ?>
<?php echo sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count); ?>
<?php echo $woocommerce->cart->get_cart_total(); ?>
HTML এবং PHP কোড একসাথে:
<a href="<?php echo $woocommerce->cart->get_cart_url(); ?>">
<span class="glyphicon glyphicon-shopping-cart">
<?php echo sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count); ?>
-
<?php echo $woocommerce->cart->get_cart_total(); ?>
</span>
</a>
<body <?php body_class(); ?>>
<?php global $woocommerce; ?>
HTML কোড :
<a href="">
<span class="glyphicon glyphicon-shopping-cart"> 2 Items - $170</span>
</a>
PHP কোড :
<?php echo $woocommerce->cart->get_cart_url(); ?>
<?php echo sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count); ?>
<?php echo $woocommerce->cart->get_cart_total(); ?>
HTML এবং PHP কোড একসাথে:
<a href="<?php echo $woocommerce->cart->get_cart_url(); ?>">
<span class="glyphicon glyphicon-shopping-cart">
<?php echo sprintf(_n('%d item', '%d items', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count); ?>
-
<?php echo $woocommerce->cart->get_cart_total(); ?>
</span>
</a>
কোন মন্তব্য নেই:
একটি মন্তব্য পোস্ট করুন