-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsidebar.php
33 lines (32 loc) · 943 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
<?php
if ( is_front_page() ) { ?>
<div class="item home-widget-area">
<ul class="sid">
<?php dynamic_sidebar('home-widget-area'); ?>
</ul>
</div>
<?php } else { ?>
<aside id="sidebar">
<div class="gad" data-ad-type="square">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-0373971494255887";
/* DFUW Sidebar */
google_ad_slot = "6114571902";
google_ad_width = 180;
google_ad_height = 150;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<?php if ( is_active_sidebar('primary-widget-area') ) : ?>
<div id="primary" class="widget-area">
<ul class="sid">
<?php dynamic_sidebar('primary-widget-area'); ?>
</ul>
</div>
<?php endif; ?>
</aside>
<?php }
?>