Guest User

Untitled

a guest
Jul 19th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  2.  
  3. <?php if(is_home()){
  4.  
  5. <div class="post">
  6. <?php the_content(); ?>
  7. </div>
  8.  
  9. } else {
  10.  
  11. <div class="post">
  12. <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
  13. <a href="<?php the_permalink(); ?>">
  14. <img src="<?php $thumbnail = get_post_custom_values('thumbnail'); echo $thumbnail[0]; ?>" alt="<?php the_title(); ?>">
  15. </a>
  16. <?php the_content('Read More'); ?>
  17. </div>
  18.  
  19. }
  20. ?>
  21.  
  22. <?php endwhile; else: ?>
  23. <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
  24. <?php endif; ?>
  25. <!-- end The Loop -->
Add Comment
Please, Sign In to add comment