A part of header dinamyc fragmented cache…how to?
-
just a simple question…i need only a part of my header.php dinamyc
<div class=”cart-wrapper”>
<?php if(class_exists(‘WP_eCommerce’) && etheme_get_option(‘just_catalog’)!=1 && etheme_get_option(‘cart_widget’)): ?>
“><div id=”top-cart” class=”shopping-cart-wrapper”>
<?php get_template_part( ‘wpsc-cart_widget’ ); ?>
</div>
<?php endif ;?>
<?php if(class_exists(‘Woocommerce’) && etheme_get_option(‘just_catalog’)!=1 && etheme_get_option(‘cart_widget’)): ?>
<?php global $woocommerce ?>
cart->get_cart_url(); ?>”>
<div id=”top-cart” class=”shopping-cart-wrapper widget_shopping_cart”>
<?php $cart_widget = new Etheme_WooCommerce_Widget_Cart(); $cart_widget->widget(); ?>
</div>
<?php endif ;?></div>
<?php if(etheme_get_option(‘top_links’)): ?>
<div id=”links”>
<?php get_template_part( ‘et-links’ ); ?>
</div>
<?php endif; ?>how i can do? how i implement mfunc to exclude this line from caching?
- The topic ‘A part of header dinamyc fragmented cache…how to?’ is closed to new replies.