Lego2012
12/13/2016 - 3:26 PM

Show taxonomy images via ACF

Show taxonomy images via ACF

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

$prod_cats = get_terms( 'product_cat', 'hide_empty=0' );
?>
<ul class="gk-special-menu">
            <?php
            foreach( $prod_cats as $cat ){
                $name = $cat->name;
                $prod_term_link = get_term_link( $cat );
                
                $img_obj = get_field( 'product_cat_img', 'product_cat_'.$cat->term_id );
                
                ?>
                <li style="width: 50% !important;" data-scroll-reveal="enter bottom over .25s after .5s">
                    <h4><?php echo $name; ?></h4>
                    <a href="<?php echo $prod_term_link; ?>">
                        <img class="alignnone size-full wp-image-974" src="<?php echo $img_obj['url']; ?>" width="185" height="256" />
                    </a>
                </li>
                <?php
            }

            ?>
        </ul>