Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <?php
  2. /**
  3. * The template for displaying the content.
  4. *
  5. * @package WordPress
  6. * @subpackage illdy
  7. */
  8. ?>
  9. <article id="post-<?php the_ID(); ?>" <?php post_class( 'blog-post' ); ?>>
  10. <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" class="blog-post-title"><?php the_title(); ?></a>
  11. <?php if ( has_post_thumbnail() ) { ?>
  12. <div class="blog-post-image">
  13. <a href="<?php echo get_the_permalink(); ?>"><?php the_post_thumbnail( 'illdy-blog-list' ); ?></a>
  14. </div><!--/.blog-post-image-->
  15. <?php } elseif ( get_theme_mod( 'illdy_disable_random_featured_image' ) ) { ?>
  16. <div class="blog-post-image">
  17. <a href="<?php echo get_the_permalink(); ?>"><img src="<?php echo illdy_get_random_featured_image(); ?>"></a>
  18. </div><!--/.blog-post-image-->
  19. <?php } ?>
  20. <?php do_action( 'illdy_archive_meta_content' ); ?>
  21. <div class="blog-post-entry">
  22. <?php the_excerpt(); ?>
  23. </div><!--/.blog-post-entry-->
  24. <a href="<?php the_permalink(); ?>" title="<?php _e( 'Read more', 'illdy' ); ?>" class="blog-post-button"><?php _e( 'Read more', 'illdy' ); ?></a>
  25. </article><!--/#post-<?php the_ID(); ?>.blog-post-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement