forked from grayghostvisuals/wp-flex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebar.php
executable file
·33 lines (28 loc) · 898 Bytes
/
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
<?php if ( ! function_exists( 'dynamic_sidebar' ) || ! dynamic_sidebar( 'wpflex sidebar' ) ) : ?>
<h3><?php _e('Default Widgets','wpflex');?></h3>
<article>
<?php get_search_form(); ?>
</article>
<article>
<h3><?php _e( 'Meta','wpflex' );?></h3>
<ul>
<?php wp_register(); ?>
<li><?php wp_login_form(); ?></li>
<li><a href="http://wordpress.org" title="Powered by WordPress, state-of-the-art semantic personal publishing platform." rel="external">WordPress.org</a></li>
<?php wp_meta(); ?>
</ul>
</article>
<article>
<h3><?php _e( 'Categories','wpflex' );?></h3>
<ul>
<?php wp_list_categories('show_count=1&title_li='); ?>
</ul>
</article>
<article>
<?php wp_list_bookmarks(); ?>
</article>
<article>
<h3><?php _e( 'Tag Cloud','wpflex' );?></h3>
<?php wp_tag_cloud(); ?>
</article>
<?php endif; ?>