Advertisement
alchymyth

Dynamic-Vision /dynamic sidebar.php

Jul 29th, 2012
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.04 KB | None | 0 0
  1. <div id="sidebar">
  2.  
  3. <?php if( !dynamic_sidebar('sidebr') ) : ?>
  4.  
  5. <h2>Categories</h2>
  6. <ul id="kategorien">
  7.                 <?php //list_cats(0, '', 'name', 'asc', '', 1, 0, 0, 1, 1, 1, 0,'','','','','');
  8.  
  9.                 wp_list_cats( 'hierarchical=1' ); ?>
  10. </ul>
  11.  
  12.  
  13. <div style="clear:both"></div>
  14.  
  15. <h2>RSS-Feeds</h2>
  16.  
  17. <ul>
  18. <li><a href="<?php bloginfo('rss2_url'); ?>">RSS-Feed - Last Posts</a></li>
  19. <li><a href="<?php bloginfo('comments_rss2_url'); ?>">RSS-Feed - Last Comments</a></li>
  20. </ul>
  21.  
  22.     <h2><?php _e('Last Entrys'); ?></h2>
  23.                  <ul>
  24.             <?php wp_get_archives('type=postbypost&limit=12'); ?>
  25.          </ul>
  26.  
  27. <h2>Search</h2>
  28. <div class="search">
  29. <form method="get" id="searchform" action="<?php bloginfo('home'); ?>/">
  30. <input type="text" value="<?php echo wp_specialchars($s, 1); ?>" name="s" id="s" />
  31. <input type="submit" id="searchsubmit" value="Search" />
  32. </form>
  33. </div>
  34.  
  35.  
  36. <?php endif; //ends the dynamic section// ?>
  37.  
  38. <h2>Meta</h2>
  39. <ul>
  40.  <?php wp_register(); ?>
  41. <li><?php wp_loginout(); ?></li>
  42. <?php wp_meta(); ?>
  43. </ul>
  44.  
  45. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement