-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcontent-postarchives.php
38 lines (34 loc) · 1.17 KB
/
content-postarchives.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
/**
* The template used for displaying page content in page.php
*
* @package Quark
* @since Quark 1.0
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( !is_front_page() ) { ?>
<header class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
</header>
<?php } ?>
<div class="entry-content">
<?php the_content(); ?>
<h2><?php esc_html_e( 'Archives by Category', 'quark' ); ?></h2>
<ul class="content-archives-by-category">
<?php wp_list_categories( array(
'showcount' => 'true',
'title_li' => '',
'show_count' => 'true'
) ); ?>
</ul>
<h2><?php esc_html_e( 'Archives by Month', 'quark' ); ?></h2>
<ul class="content-archives-by-month">
<?php wp_get_archives( 'type=monthly' ); ?>
</ul>
<?php wp_link_pages( array( 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'quark' ), 'after' => '</div>' ) ); ?>
</div><!-- /.entry-content -->
<footer class="entry-meta">
<?php edit_post_link( esc_html__( 'Edit', 'quark' ) . ' <i class="fa fa-angle-right" aria-hidden="true"></i>', '<div class="edit-link">', '</div>' ); ?>
</footer><!-- /.entry-meta -->
</article><!-- /#post -->