-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebar.php
More file actions
37 lines (33 loc) · 1.41 KB
/
sidebar.php
File metadata and controls
37 lines (33 loc) · 1.41 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
33
34
35
36
37
<!-- begin sidebar -->
<div id="sidebar">
<?php /* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("Sidebar One") ) : ?>
<div class="side-widget">
<h2>actcualités</h2>
<ul>
<?php query_posts('category_name=actualites'); ?>
</ul>
</div>
<div class="side-widget">
<h2>Liens</h2>
<ul>
<?php wp_list_bookmarks('title_li=&categorize=0'); ?>
</ul>
</div>
<div class="side-widget">
<?php _e('<h2>Calendrier</h2>'); ?>
<?php get_calendar(); ?>
</div>
<div class="side-widget">
<?php _e('<h2>Archives</h2>'); ?>
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</div>
<div class="side-widget">
<?php _e('<h2>Mots-clefs</h2>'); ?>
<?php wp_tag_cloud(); ?>
</div>
<?php endif; ?>
</div>
<!-- end sidebar -->