-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchives.php
61 lines (53 loc) · 1.45 KB
/
archives.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
<?php
/*
Template Name: Archives
*/
get_header(); ?>
<div id="primary" class="site-content">
<div id="content" role="main">
<?php the_post(); ?>
<header class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
</header><!-- .entry-header -->
<div class="entry-content">
<h2>Categories</h2>
<div class="panel panel-default">
<div class="panel-body">
<ul>
<?php wp_list_categories('title_li=&feed=RSS'); ?>
</ul>
</div><!-- .panel-body -->
</div><!-- .panel -->
<h2>Tags</h2>
<div class="panel panel-default">
<div class="panel-body">
<?php
$args =
array(
'smallest' => 14,
'largest' => 14,
'unit' => 'px',
'format' => 'list',
);
wp_tag_cloud($args); ?>
</div><!-- .panel-body -->
</div><!-- .panel -->
<h2>Recent</h2>
<div class="panel panel-default">
<div class="panel-body">
<ul>
<?php
$recent_posts = wp_get_recent_posts();
foreach( $recent_posts as $recent ){
echo '<li><a href="' . get_permalink($recent["ID"]) . '">' . $recent["post_title"].'</a> </li> ';
}
wp_reset_query();
?>
</ul>
</div><!-- .panel-body -->
</div><!-- .panel -->
</div><!-- .entry-content -->
</div><!-- #content -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>