-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.php
More file actions
82 lines (58 loc) · 2.55 KB
/
Copy pathcontent.php
File metadata and controls
82 lines (58 loc) · 2.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
/*
* The content template for a loop
*
* @package Inception
* @author Adam Chamberlin
* @since 1.0
*
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<h1 class="entry-title">
<a href="<?php the_permalink(); ?>" title="<?php printf( __( 'Permalink to %s', 'inception' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark">
<?php the_title(); ?>
</a>
</h1><!-- .entry-title -->
<div class="entry-meta">
<span class="meta-prep meta-prep-author">
<?php __( 'By ', 'inception' ); ?>
</span>
<span class="author vcard">
<a class="url fn n" href="<?php echo get_author_link( false, $authordata->ID, $authordata->user_nicename ); ?>" title="<?php printf( __( 'View all posts by %s', 'inception' ), $authordata->display_name ); ?>">
<?php the_author(); ?>
</a>
</span>
<span class="meta-sep"> | </span>
<span class="meta-prep meta-prep-entry-date">
<?php __( 'Published ', 'inception' ); ?>
</span>
<span class="entry-date">
<abbr class="published" title="<?php the_time( 'Y-m-d\TH:i:sO' ); ?>">
<?php the_time( get_option( 'date_format' ) ); ?>
</abbr>
</span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content">
<?php the_content( __( 'Continue reading <span class="meta-nav">»</span>', 'inception' ) ); ?>
<?php wp_link_pages( 'before=<div class="page-link">' . __( 'Pages:', 'inception' ) . '&after=</div>' ); ?>
</div><!-- .entry-content -->
<footer class="entry-meta">
<div class="entry-utility">
<span class="cat-links">
<span class="entry-utility-prep entry-utility-prep-cat-links">
<?php __( 'Posted in ', 'inception' ); ?>
</span>
<?php echo get_the_category_list( ', ' ); ?>
</span>
<span class="meta-sep"> | </span>
<?php the_tags( '<span class="tag-links"><span class="entry-utility-prep entry-utility-prep-tag-links">' . __( 'Tagged ', 'inception' ) . '</span>', ", ", "</span>\n\t\t\t\t\t\t<span class=\"meta-sep\">|</span>\n" ); ?>
<span class="comments-link">
<?php comments_popup_link( __( 'Leave a comment', 'inception' ), __( '1 Comment', 'inception' ), __( '% Comments', 'inception' ) ); ?>
</span>
<?php edit_post_link( __( 'Edit', 'inception' ), "<span class=\"meta-sep\"> | </span><span class=\"edit-link\">", "</span>" ); ?>
</div><!-- #entry-utility -->
</footer><!-- .entry-meta -->
</article><!-- #post-<?php the_ID(); ?> -->