Advertisement
Guest User

Untitled

a guest
Jan 6th, 2014
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.33 KB | None | 0 0
  1. <div class="span-10 last">
  2.     <?php if(get_theme_option('ads_125') != '') {
  3.         ?>
  4.         <div class="sidebaradbox125">
  5.             <?php sidebar_ads_125(); ?>
  6.         </div>
  7.     <?php } ?>
  8.    
  9.     <div class="span-5">
  10.        
  11.         <div class="sidebar left-sidebar">
  12.             <?php get_search_form(); ?>
  13. <br/>
  14. <center><a href="http://daz-clan.com/board/index.php?page=Register"><img src="http://www.daz-clan.com/images/joinus.png"></a></center>
  15.             <ul>
  16.                 <?php
  17.                         if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar 2') ) : ?>
  18.                 <li><h2><?php _e('Recent Posts'); ?></h2>
  19.                                <ul>
  20.                         <?php wp_get_archives('type=postbypost&limit=5'); ?>  
  21.                                </ul>
  22.                     </li>
  23.                    
  24.                     <li id="tag_cloud"><h2>Tags</h2>
  25.                         <?php wp_tag_cloud('largest=16&format=flat&number=20'); ?>
  26.                     </li>
  27.                
  28.                     <li>
  29.                         <h2>Calendar</h2>
  30.                         <?php get_calendar(); ?>
  31.                     </li>
  32.                    
  33.                
  34.                
  35.                 <?php include (TEMPLATEPATH . '/recent-comments.php'); ?>
  36.                 <?php if (function_exists('get_recent_comments')) { get_recent_comments(); } ?>
  37.                
  38.                 <li><h2>Meta</h2>
  39.                     <ul>
  40.                         <?php wp_register(); ?>
  41.                         <li><?php wp_loginout(); ?></li>
  42.                         <li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
  43.                         <li><a href="http://wordpress.org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li>
  44.                         <?php wp_meta(); ?>
  45.                     </ul>
  46.                     </li>
  47.    
  48.                 <?php endif; ?>
  49.             </ul>
  50.         <?php if(get_theme_option('ad_sidebar1_bottom') != '') {
  51.         ?>
  52.         <div class="sidebaradbox">
  53.             <?php echo get_theme_option('ad_sidebar1_bottom'); ?>
  54.         </div>
  55.         <?php
  56.         }
  57.         ?>
  58.          
  59.         </div>
  60.     </div>
  61.  
  62.     <div class="span-5 last">
  63.    
  64.         <div class="sidebar right-sidebar">
  65.        
  66.        
  67.        
  68.             <ul>
  69.                 <?php
  70.                         if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar 1') ) : ?>
  71.    
  72.                    
  73.                
  74.                     <li><h2>Archives</h2>
  75.                         <ul>
  76.                         <?php wp_get_archives('type=monthly'); ?>
  77.                         </ul>
  78.                     </li>
  79.                         <?php wp_list_bookmarks(); ?>
  80.                        
  81.                    
  82.                    
  83.                 <?php endif; ?>
  84.             </ul>
  85.            
  86.         <?php if(get_theme_option('ad_sidebar2_bottom') != '') {
  87.         ?>
  88.         <div class="sidebaradbox">
  89.             <?php echo get_theme_option('ad_sidebar2_bottom'); ?>
  90.         </div>
  91.         <?php
  92.         }
  93.         ?>
  94.    
  95.         </div>
  96.        
  97.     </div>
  98. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement