-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent-single.php
More file actions
32 lines (32 loc) · 1.21 KB
/
Copy pathcontent-single.php
File metadata and controls
32 lines (32 loc) · 1.21 KB
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
<?php
/**
* @package SKT Salon
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class('single-post'); ?>>
<div class="postmeta">
<div class="post-date"><?php the_date(); ?></div><!-- post-date -->
<div class="post-comment"> | <a href="<?php comments_link(); ?>"><?php comments_number(); ?></a></div>
<div class="clear"></div>
</div><!-- postmeta -->
<div class="entry-content">
<?php
the_content();
wp_link_pages( array(
'before' => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:', 'skt-salon' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
'pagelink' => '<span class="screen-reader-text">' . esc_html__( 'Page', 'skt-salon' ) . ' </span>%',
'separator' => '<span class="screen-reader-text">, </span>',
) );
?>
<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(); ?>
</footer><!-- .entry-meta -->
</article>