-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcontent-archive.php
More file actions
29 lines (26 loc) 路 820 Bytes
/
Copy pathcontent-archive.php
File metadata and controls
29 lines (26 loc) 路 820 Bytes
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
<article <?php post_class(); ?>>
<a href="<?php the_permalink();?> ">
<?php the_post_thumbnail('large_thumbnail');?>
</a>
<header class="entry-header">
<time
class="entry-time"
pubdate="pubdate"
datetime="<?php the_time('Y-m-d');?>"
>
</time>
<?php if(!is_search()): ?>
<span class="author vcard">
<?php the_author_posts_link(); ?>
</span>
<?php endif;?>
<h1 class="page-title">
<a href="<?php the_permalink();?> ">
<?php the_title(); ?>
</a>
</h1>
</header>
<section class="entry-content">
<?php the_excerpt(); ?>
</section>
</article>