-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsidebar.php
More file actions
37 lines (33 loc) · 729 Bytes
/
sidebar.php
File metadata and controls
37 lines (33 loc) · 729 Bytes
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
<?php
/**
* The tempate for rendering the sidebar. Will be on the left or the right of the of the screen depending
* on the layout that the user has selected in the Dashboard.
*
* @package Standard
* @since 3.0
* @version 3.0
*/
?>
<div id="sidebar" class="span4">
<?php if ( ! dynamic_sidebar( 'sidebar-0' ) ) { ?>
<div class="widget">
<?php get_search_form(); ?>
</div><!-- /.widget -->
<?php
$activity = new Activity_Tabs();
$activity->widget(
array(),
array(
'post_count' => 10,
'popular_count' => 10,
'comment_count' => 10
)
);
$ads_125 = new Standard_Ad_125x125();
$ads_125->widget(
array(),
array()
);
?>
<?php } // end if ?>
</div><!-- /#sidebar -->