-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebar.php
48 lines (39 loc) · 1.12 KB
/
sidebar.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
<?php
/**
* @package WordPress
* @subpackage Inspira
* @since Inspira 0.1
*/ ?>
<aside class="sidebar secondary">
<?php get_search_form(); ?>
<div class="sidebar-box">
<h2>Entradas Recientes</h2>
<?php $args = array(
'numberposts' => 8
);
$recent_posts = wp_get_recent_posts( $args, ARRAY_A ); ?>
<ul>
<?php
foreach( $recent_posts as $recent ){
echo '<li><a href="' . get_permalink($recent["ID"]) . '">' . $recent["post_title"].'</a> </li> ';
}
?>
</ul>
</div>
<div class="sidebar-box">
<h2>Archivos</h2>
<?php $args = array(
'type' => 'monthly',
'limit' => '',
'format' => 'html',
'before' => '',
'after' => '',
'show_post_count' => false,
'echo' => 1,
'order' => 'DESC'
); ?>
<ul>
<?php wp_get_archives( $args ); ?>
</ul>
</div>
</aside><!-- .secondary -->