-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloop-excerpt.php
28 lines (21 loc) · 999 Bytes
/
loop-excerpt.php
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
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<a href="<?php esc_url(the_permalink()) ?>" rel="bookmark"><?php the_post_thumbnail('featured_image'); ?></a>
<div class="post-title-wrap clearfix">
<span class="meta-date">
<?php printf(__('<a href="%1$s" title="%2$s" rel="bookmark"><time datetime="%3$s">%4$s</time></a>', 'zeeFocus_language'),
esc_url( get_permalink() ),
esc_attr( get_the_time() ),
esc_attr( get_the_date( 'c' ) ),
esc_html( get_the_date() )
);
?>
</span>
<h2 class="post-title"><a href="<?php esc_url(the_permalink()) ?>" rel="bookmark"><?php the_title(); ?></a></h2>
</div>
<div class="entry clearfix">
<?php the_excerpt(); ?>
<a href="<?php esc_url(the_permalink()) ?>" class="read-more"><?php _e('Read more', 'zeeFocus_language'); ?></a>
<div class="page-links"><?php wp_link_pages(); ?></div>
</div>
<div class="postmeta"><?php themezee_display_postmeta(); ?></div>
</article>