-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent-single.php
38 lines (34 loc) · 1.4 KB
/
content-single.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
<?php
/**
* @package Makeup Lite
*/
?>
<div class="poststyle_list">
<article id="post-<?php the_ID(); ?>" <?php post_class('single-post'); ?>>
<header class="entry-header">
<?php the_title( '<h3 class="single-title">', '</h3>' ); ?>
</header><!-- .entry-header -->
<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 -->
<div class="entry-content">
<?php the_content(); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'makeup-lite' ),
'after' => '</div>',
) );
?>
<div class="postmeta">
<div class="post-tags"><?php the_tags(); ?> </div>
<div class="clear"></div>
</div><!-- postmeta -->
</div><!-- .entry-content -->
<footer class="entry-meta">
<?php edit_post_link( __( 'Edit', 'makeup-lite' ), '<span class="edit-link">', '</span>' ); ?>
</footer><!-- .entry-meta -->
</article>
</div><!-- .poststyle_list-->