Advertisement
Guest User

IndyOwls-sidebar

a guest
Mar 12th, 2012
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.51 KB | None | 0 0
  1. <?php if (dynamic_sidebar('Sidebar Widgets')) : else : ?>
  2.  
  3. <!-- All this stuff in here only shows up if you DON'T have any widgets active in this zone -->
  4.  
  5. <div class="widget-container">
  6. <h2 class="widget-title">Welcome to iFeature Pro 4</h2>
  7. <ul>
  8. <li>Thank you for purchasing iFeature Pro 4.</li>
  9. <li>&nbsp;</li>
  10. <li>We designed iFeature Pro 4 to be as user friendly as possible, but if you do run into trouble we provide a <a href="http://cyberchimps.com/forum">support forum</a>, and <a href="http://www.cyberchimps.com/ifeature-pro/docs/">precise documentation</a>.</li>
  11. <li>&nbsp;</li>
  12. <li>If we were all designers then every WordPress theme would look this good.</li>
  13. <li>&nbsp;</li>
  14. <li><small>(To remove this Widget login to your admin account, go to Appearance, then Widgets and drag new widgets into Sidebar Widgets)</small></li>
  15. </ul>
  16. </div>
  17.  
  18. <div class="widget-container">
  19. <h2 class="widget-title"><?php printf( __('Pages', 'ifeature' )); ?></h2>
  20. <ul>
  21. <?php wp_list_pages('title_li=' ); ?>
  22. </ul>
  23. </div>
  24.  
  25. <div class="widget-container">
  26. <h2 class="widget-title"><?php printf( __( 'Archives', 'ifeature' )); ?></h2>
  27. <ul>
  28. <?php wp_get_archives('type=monthly'); ?>
  29. </ul>
  30. </div>
  31.  
  32. <div class="widget-container">
  33. <h2 class="widget-title"><?php printf( __('Categories', 'ifeature' )); ?></h2>
  34. <ul>
  35. <?php wp_list_categories('show_count=1&title_li='); ?>
  36. </ul>
  37. </div>
  38.  
  39. <div class="widget-container">
  40. <h2 class="widget-title"><?php printf( __('WordPress', 'ifeature' )); ?></h2>
  41. <ul>
  42. <?php wp_register(); ?>
  43. <li><?php wp_loginout(); ?></li>
  44. <li><a href="<?php echo esc_url( __('http://wordpress.org/', 'ifeature' )); ?>" target="_blank" title="<?php esc_attr_e('Powered by WordPress, state-of-the-art semantic personal publishing platform.', 'ifeature'); ?>"> <?php printf( __('WordPress', 'ifeature' )); ?></a></li>
  45. <?php wp_meta(); ?>
  46. </ul>
  47. </div>
  48.  
  49. <div class="widget-container">
  50. <h2 class="widget-title"><?php printf( __('Subscribe', 'ifeature' )); ?></h2>
  51. <ul>
  52. <li><a href="<?php bloginfo('rss2_url'); ?>"><?php printf( __('Entries (RSS)', 'ifeature' )); ?></a></li>
  53. <li><a href="<?php bloginfo('comments_rss2_url'); ?>"><?php printf( __('Comments (RSS)', 'ifeature' )); ?></a></li>
  54. </ul>
  55. </div>
  56.  
  57. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement