Advertisement
Guest User

content-child.php { Pinboard theme }

a guest
Apr 18th, 2015
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.16 KB | None | 0 0
  1. <article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
  2.     <div class="entry">
  3.         <?php if( ! pinboard_post_is_full_width() ) : ?>
  4.             <?php pinboard_post_thumbnail(); ?>
  5.         <?php endif; ?>
  6.         <div class="entry-container">
  7.             <header class="entry-header">
  8.                 <<?php pinboard_title_tag( 'post' ); ?> class="entry-title">
  9.                     <?php the_title(); ?>
  10.                 </<?php pinboard_title_tag( 'post' ); ?>>
  11.                 <?php if( pinboard_post_is_full_width() ) : ?>
  12.                     <?php pinboard_entry_meta(); ?>
  13.                 <?php endif; ?>
  14.             </header><!-- .entry-header -->
  15.             <?php if( pinboard_post_is_full_width() ) : ?>
  16.                 <?php pinboard_post_thumbnail(); ?>
  17.             <?php endif; ?>
  18.             <?php if( ! is_category( pinboard_get_option( 'portfolio_cat' ) ) && ! ( is_category() && cat_is_ancestor_of( pinboard_get_option( 'portfolio_cat' ), get_queried_object() ) ) ) : ?>
  19.                 <div class="entry-summary">
  20.                     <?php // the_excerpt(); ?>
  21.                 </div><!-- .entry-summary -->
  22.             <?php endif; ?>
  23.             <div class="clear"></div>
  24.         </div><!-- .entry-container -->
  25.         <?php if( ! pinboard_post_is_full_width() ) : ?>
  26.             <?php pinboard_entry_meta(); ?>
  27.         <?php endif; ?>
  28.     </div><!-- .entry -->
  29. </article><!-- .post -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement