Guest User

Untitled

a guest
Apr 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.73 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <div id="post" class="container">
  3.     <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  4.  
  5.         <div <?php post_class('feed') ?> id="post-<?php the_ID(); ?>">
  6.        
  7.         <img class="sticky" src="<?php bloginfo('stylesheet_directory'); ?>/images/sticky-post.png">
  8.         <!-- Ribbon for Sticky Post -->
  9.        
  10.         <img class="sticky" src="<?php bloginfo('stylesheet_directory'); ?>/images/sticky-post.png">
  11.         <!-- Ribbon for Gallery Post -->
  12.        
  13.             <div class="post-img">
  14.                 <?php
  15.                 if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
  16.                   the_post_thumbnail();
  17.                   set_post_thumbnail_size( 220, 220 );
  18.                  }
  19.                  else { ?>
  20.                     <a href="<?php the_permalink() ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/post-thumbnail.png" alt="<?php the_title(); ?>" /></a> <?php } ?>
  21.             </div>
  22.             <h2><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php limit_title($post->post_title, 32); ?></a></h2>
  23.             <h4><?php include (TEMPLATEPATH . '/inc/meta.php' ); ?></h4>           
  24.  
  25.             <div class="entry">
  26.                 <?php echo get_excerpt(); ?>
  27.             </div>
  28.  
  29.             <div class="postmetadata">
  30.                 <!--<?php the_tags('Tags: ', ' ', '<br />'); ?>
  31.                 Posted in: <?php the_category(', ') ?> |
  32.                 <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?>-->
  33.             </div>
  34.         </div>
  35.  
  36.     <?php endwhile; ?>
  37.  
  38.     <?php include (TEMPLATEPATH . '/inc/nav.php' ); ?>
  39.  
  40.     <?php else : ?>
  41.  
  42.         <h2>Not Found</h2>
  43.  
  44.     <?php endif; ?>
  45. </div><!-- POST CONTAINER -->
  46. <?php get_sidebar(); ?>
  47.  
  48. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment