-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.php
45 lines (42 loc) · 2 KB
/
content.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
<?php
/**
* @package Makeup Lite
*/
?>
<div class="poststyle_list">
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if (has_post_thumbnail() ){ ?>
<div class="blogthumbimg">
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
</div>
<?php } ?>
<header class="entry-header">
<h3><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h3>
<?php if ( 'post' == get_post_type() ) : ?>
<div class="blog_postmeta">
<div class="post-date"> <i class="far fa-clock"></i> <?php echo esc_html( get_the_date() ); ?></div><!-- post-date -->
<?php if( get_theme_mod( 'makeup_lite_hide_postcategory' ) == '') { ?>
<span class="blogpost_cat"> <i class="far fa-folder-open"></i> <?php the_category( __( ', ', 'makeup-lite' ));?></span>
<?php } ?>
</div><!-- .blog_postmeta -->
<?php endif; ?>
</header><!-- .entry-header -->
<?php if ( is_search() || !is_single() ) : // Only display Excerpts for Search ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
<a class="blogreadbtn" href="<?php the_permalink(); ?>"><?php esc_html_e('Read more','makeup-lite'); ?></a>
</div><!-- .entry-summary -->
<?php else : ?>
<div class="entry-content">
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'makeup-lite' ) ); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'makeup-lite' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->
<?php endif; ?>
<div class="clear"></div>
</article><!-- #post-## -->
</div>