ru-se.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

content-post-meta.php (482B)


      1 <?php
      2 if ( ! apply_filters( 'materialis_show_post_meta', true ) ) {
      3 	return;
      4 }
      5 
      6 ?>
      7 <div class="post-meta">
      8     <span class="meta-label"><?php _e( 'by', 'materialis' ); ?></span>
      9 	<?php the_author_posts_link(); ?>
     10     <span class="meta-label"><?php _e( 'on', 'materialis' ); ?></span>
     11     <span class="meta-content"> <?php the_category(' ', ' ');?></span>
     12     <span class="meta-label">-</span>
     13     <span class="span12"><?php the_time( get_option( 'date_format' ) ); ?></span>
     14 </div>