Guest User

Untitled

a guest
Mar 21st, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <?php
  2. $pc = new WP_Query('cat=17'); ?>
  3. <?php while ($pc->have_posts()) : $pc->the_post(); ?>
  4. <a href="<?php the_permalink ?>">
  5. <div class="ui segment">
  6. <span class="ui bottom attached label"><?php the_title(); ?></span>
  7. <?php if ( has_post_thumbnail() ) {
  8. the_post_thumbnail();
  9. } else { ?>
  10. <img src="<?php echo bloginfo('template_url'); ?>/img/logo.png" alt="<?php the_title(); ?>" />
  11. <?php } ?>
  12. </div>
  13. </a>
  14. <?php endwhile; ?>
Add Comment
Please, Sign In to add comment