Advertisement
srikat

Untitled

May 18th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.00 KB | None | 0 0
  1. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  2.     <!-- title, meta, and date info -->
  3.     <div class="entry-header clearfix">
  4.         <h3 class="entry-title">
  5.             <!-- Use this instead? <h3 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3> -->
  6.             <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
  7.         </h3>
  8.        
  9.         <div class="entry-meta author comments">
  10.             <?php printf( __( 'by %s', 'it-l10n-BuilderChild-Expansion-Blue' ), '<span class="author">' . builder_get_author_link() . '</span>' ); ?>
  11.             <?php do_action( 'builder_comments_popup_link', '<span class="comments">&middot; ', '</span>', __( 'Comments %s', 'it-l10n-BuilderChild-Expansion-Blue' ), __( '(0)', 'it-l10n-BuilderChild-Expansion-Blue' ), __( '(1)', 'it-l10n-BuilderChild-Expansion-Blue' ), __( '(%)', 'it-l10n-BuilderChild-Expansion-Blue' ) ); ?>
  12.         </div>
  13.        
  14.         <div class="entry-meta date">
  15.             <span class="day"><?php the_time( 'd' ); ?></span>
  16.             <span class="month"><?php the_time( 'M' ); ?></span>
  17.         </div>
  18.     </div>
  19.    
  20.     <!-- post content -->
  21.     <div class="entry-content clearfix">
  22.         <?php the_content( __( 'Read More&rarr;', 'it-l10n-BuilderChild-Expansion-Blue' ) ); ?>
  23.     </div>
  24.    
  25.     <!-- categories, tags and comments -->
  26.     <div class="entry-footer clearfix">
  27.         <?php do_action( 'builder_comments_popup_link', '<div class="entry-meta alignright"><span class="comments">', '</span></div>', __( 'Comments %s', 'it-l10n-BuilderChild-Expansion-Blue' ), __( '(0)', 'it-l10n-BuilderChild-Expansion-Blue' ), __( '(1)', 'it-l10n-BuilderChild-Expansion-Blue' ), __( '(%)', 'it-l10n-BuilderChild-Expansion-Blue' ) ); ?>
  28.         <div class="entry-meta alignleft">
  29.             <div class="categories"><?php printf( __( 'Categories : %s', 'it-l10n-BuilderChild-Expansion-Blue' ), get_the_category_list( ', ' ) ); ?></div>
  30.             <?php the_tags( '<div class="tags">' . __( 'Tags : ', 'it-l10n-BuilderChild-Expansion-Blue' ), ', ', '</div>' ); ?>
  31.         </div>
  32.     </div>
  33. </div>
  34. <!-- end .post -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement