-
Notifications
You must be signed in to change notification settings - Fork 10
/
meta.php
21 lines (20 loc) · 812 Bytes
/
meta.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
/**
* Generic meta template.
*
* @package WordPress-960
*/
?>
<ul class="post-meta">
<!-- Tags -->
<li class="tags"><?php _e( 'Tagged with', 'wp960' ); ?> <?php the_tags(', '); ?></li>
<!-- Categories -->
<li class="category"><?php _e( 'Filed under', 'wp960' ); ?> <?php the_category(', '); ?></li>
<!-- Date/Time -->
<?php $time = get_the_time('U'); ?>
<li class="time"><?php _e( 'Posted on', 'wp960' ); ?> <time datetime="<?php echo date('c', $time); ?>"><?php echo date('F jS, Y', $time) ?></time></li>
<!-- Author -->
<li class="author"><?php _e( 'Written by', 'wp960' ); ?> <?php the_author_posts_link() ?></li>
<!-- Comments -->
<li class="comments"><?php comments_popup_link( __( 'Leave a comment', 'wp960' ), __( '1 Comment', 'wp960' ), __( '% Comments', 'wp960' ) ); ?></li>
</ul>