Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1.  
  2.  
  3. <?php get_header(); ?>
  4.  
  5. <div class="content thin">
  6.  
  7. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  8.  
  9. <div <?php post_class('post single'); ?>>
  10.  
  11. <?php if ( has_post_thumbnail() ) : ?>
  12.  
  13. <?php $thumb = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'thumbnail_size' ); $thumb_url = $thumb['0']; ?>
  14.  
  15. <div class="featured-media">
  16.  
  17. <?php the_post_thumbnail('post-image'); ?>
  18.  
  19. </div> <!-- /featured-media -->
  20.  
  21. <?php endif; ?>
  22.  
  23. <div class="post-inner">
  24.  
  25. <div class="post-header">
  26.  
  27. <h1 class="post-title"><?php the_title(); ?></h1>
  28.  
  29. </div> <!-- /post-header section -->
  30.  
  31. <div class="post-content">
  32.  
  33. <?php the_content(); ?>
  34.  
  35. <?php wp_link_pages('before=<div class="clear"></div><p class="page-links">' . __('Pages:','fukasawa') . ' &after=</p>&seperator= <span class="sep">/</span> '); ?>
  36.  
  37. </div>
  38.  
  39. </div> <!-- /post-inner -->
  40.  
  41. <?php if ( comments_open() ) : ?>
  42.  
  43. <?php comments_template( '', true ); ?>
  44.  
  45. <?php endif; ?>
  46.  
  47. </div> <!-- /post -->
  48.  
  49. <?php endwhile; else: ?>
  50.  
  51. <p><?php _e("We couldn't find any posts that matched your query. Please try again.", "fukasawa"); ?></p>
  52.  
  53. <?php endif; ?>
  54.  
  55. <div class="clear"></div>
  56.  
  57. </div> <!-- /content -->
  58.  
  59. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement