This repository has been archived by the owner on Jul 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcustom-archive.php
executable file
·99 lines (84 loc) · 2.98 KB
/
custom-archive.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php
/**
* Template Name: Custom Archive
*
* Template for adding a custom archive page to your site.
*
* @package Verb
* @since Verb 1.0
*/
get_header(); ?>
<div id="content">
<div class="posts">
<!-- grab the posts -->
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<article <?php post_class('post'); ?>>
<div class="box-wrap">
<div class="box">
<header>
<h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'verb' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
</header>
<!-- grab the featured image -->
<?php if ( has_post_thumbnail() ) { ?>
<a class="featured-image" href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'verb' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_post_thumbnail( 'large-image' ); ?></a>
<?php } ?>
<!-- post content -->
<div class="post-content">
<?php the_content( __( 'Read More', 'verb' ) ); ?>
<div id="archive">
<div class="archive-col">
<div class="archive-box">
<h3><?php _e( 'Latest Posts', 'verb' ); ?></h3>
<ul>
<?php wp_get_archives( 'type=postbypost&limit=10' ); ?>
</ul>
</div>
<div class="archive-box">
<h3><?php _e( 'Pages', 'verb' ); ?></h3>
<ul>
<?php wp_list_pages( 'sort_column=menu_order&title_li=' ); ?>
</ul>
</div>
<div class="archive-box">
<h3><?php _e( 'Categories', 'verb' ); ?></h3>
<ul>
<?php wp_list_categories( 'orderby=name&title_li=' ); ?>
</ul>
</div>
<div class="archive-box">
<h3><?php _e( 'Archive By Day', 'verb' ); ?></h3>
<ul>
<?php wp_get_archives( 'type=daily&limit=15' ); ?>
</ul>
</div>
<div class="archive-box">
<h3><?php _e( 'Archive By Month', 'verb' ); ?></h3>
<ul>
<?php wp_get_archives( 'type=monthly&limit=12' ); ?>
</ul>
</div>
<div class="archive-box">
<h3><?php _e( 'Archive By Year', 'verb' ); ?></h3>
<ul>
<?php wp_get_archives( 'type=yearly&limit=12' ); ?>
</ul>
</div>
<div class="archive-box">
<h3><?php _e( 'Contributors', 'verb' ); ?></h3>
<ul>
<?php wp_list_authors( 'show_fullname=1&optioncount=0&orderby=post_count&order=DESC' ); ?>
</ul>
</div>
</div><!-- column -->
</div><!-- archive -->
</div><!-- post content -->
</div><!-- box -->
</div><!-- box wrap -->
</article><!-- post-->
<?php endwhile; ?>
<?php endif; ?>
</div>
</div><!-- content -->
<?php get_sidebar(); ?>
<!-- footer -->
<?php get_footer(); ?>