Adding a WATERMARK to a thumbnails if in a specific category
-
Hi,
I have a piece of CODE outside the LOOP, that I am trying to figure out how to modify so it will ADD a ICON of a PLAY button on the THUMB (PNG) if it is from the VIDEO CATEGORY.
<div id="video-grid"> <?php $args = array( 'numberposts' => 12 ); $lastposts = get_posts( $args ); foreach($lastposts as $post) : setup_postdata($post); ?> <div class="story"> <a>"><?php the_post_thumbnail('thumbnail', array('class' => 'grid-thumb')); ?></a> <a>"><h2><?php the_title(); ?></h2></a> <p><a>"><?php echo excerpt(12); ?> Read More</a></p> </div> <?php endforeach; ?> <div class="clearer"></div> </div>
- The topic ‘Adding a WATERMARK to a thumbnails if in a specific category’ is closed to new replies.