Advertisement
srikat

Untitled

May 18th, 2013
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.82 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"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
  5.        
  6.         <div class="entry-meta author comments">
  7.             <?php printf( __( 'by %s', 'it-l10n-BuilderChild-Expansion-Blue' ), '<span class="author">' . builder_get_author_link() . '</span>' ); ?>
  8.             <?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' ) ); ?>
  9.         </div>
  10.        
  11.         <div class="entry-meta date">
  12.             <span class="day"><?php the_time( 'd' ); ?></span>
  13.             <span class="month"><?php the_time( 'M' ); ?></span>
  14.         </div>
  15.     </div>
  16.    
  17.     <!-- post content -->
  18.     <div class="entry-content clearfix">
  19.         <?php the_content( __( 'Read More&rarr;', 'it-l10n-BuilderChild-Expansion-Blue' ) ); ?>
  20.     </div>
  21.    
  22.     <!-- categories, tags and comments -->
  23.     <div class="entry-footer clearfix">
  24.         <?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' ) ); ?>
  25.         <div class="entry-meta alignleft">
  26.             <div class="categories"><?php printf( __( 'Categories : %s', 'it-l10n-BuilderChild-Expansion-Blue' ), get_the_category_list( ', ' ) ); ?></div>
  27.             <?php the_tags( '<div class="tags">' . __( 'Tags : ', 'it-l10n-BuilderChild-Expansion-Blue' ), ', ', '</div>' ); ?>
  28.         </div>
  29.     </div>
  30. </div>
  31. <!-- end .post -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement