This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$the_query = new WP_Query(array( | |
'category_name' => 'featured', | |
'posts_per_page' => '3' | |
)); | |
while ($the_query->have_posts()) : $the_query->the_post(); ?> | |
<div class="post-container"> | |
<?php the_post_thumbnail( 'medium' ) ?> | |
<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3> | |
<p><?php the_excerpt(); ?></p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// hide coupon field on cart page | |
function hide_coupon_field_on_cart( $enabled ) { | |
if ( is_cart() ) { | |
$enabled = false; | |
} | |
return $enabled; |