Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <?php
  2. if ( has_post_thumbnail() ) { ?>
  3. <div class="tile-thumbnail">
  4. <a href="<?php the_permalink() ?>" title="Fixed link <?php the_title_attribute(); ?>">
  5. <?php the_post_thumbnail('tile-1'); ?>
  6. </a>
  7. </div>
  8. <?php } else { ?>
  9. <div class="tile-thumbnail">
  10. <a href="<?php the_permalink() ?>" title="Fixed link <?php the_title_attribute(); ?>">
  11. <img src="<?php echo esc_url( plugin_basename( __FILE__ ) ) ?>/images/default-blog.jpg" />
  12. </a>
  13. </div>
  14. <?php
  15. }
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement