-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent-recent-posts.php
69 lines (55 loc) · 2.07 KB
/
content-recent-posts.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
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
<?php
/**
* Display a recent post (for the homepage).
*
* @package Listify
* @category Content
* @since 1.4.0
*/
// global should be avoided
global $style, $excerpt;
if ( 'standard' == $style ) :
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div <?php echo apply_filters( 'listify_cover', 'listify-clickbox-container entry-header entry-cover entry-cover--grid entry-cover--grid-empty' ); ?>>
<a href="<?php the_permalink(); ?>" rel="bookmark" class="listify-clickbox"></a>
</div>
<div class="content-box-inner">
<div class="entry-meta entry-meta--grid">
<span class="entry-category">
<?php echo get_the_date(); ?> • <?php the_category( ', ' ); ?>
</span>
</div>
<h1 class="entry-title entry-title--grid"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
<?php if ( $excerpt ): ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php endif; ?>
<footer class="entry-footer">
<a href="<?php the_permalink(); ?>" class="entry-read-more"><?php _e( 'Read More', 'listify' ); ?></a>
</footer><!-- .entry-footer -->
</div>
</article><!-- #post-## -->
<?php else : ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div <?php echo apply_filters( 'listify_cover', 'entry-header entry-cover entry-cover--grid-cover' ); ?>>
<div class="cover-wrapper cover-wrapper--entry-grid">
<div class="entry-meta entry-meta--grid">
<span class="entry-category">
<?php echo get_the_date(); ?> • <?php the_category( ', ' ); ?>
</span>
</div>
<h1 class="entry-title entry-title--grid"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
<?php if ( $excerpt ): ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php endif; ?>
<footer class="entry-footer">
<a href="<?php the_permalink(); ?>" class="entry-read-more"><?php _e( 'Read More', 'listify' ); ?></a>
</footer><!-- .entry-footer -->
</div>
</div>
</article><!-- #post-## -->
<?php endif; ?>