Skip to content

Instantly share code, notes, and snippets.

@pixelcoder
Created April 20, 2015 03:46
Show Gist options
  • Save pixelcoder/75d0acdf9008ebfcd2c8 to your computer and use it in GitHub Desktop.
Save pixelcoder/75d0acdf9008ebfcd2c8 to your computer and use it in GitHub Desktop.
WordPress: Dynamic sidebar
<?php if(dynamic_sidebar('wp-sidebar')) : else : ?>
<div class="widget widget_search">
<h4>Search</h4>
<?php get_search_form(); ?>
</div><!-- END WIDGET -->
<div class="widget widget_categories">
<h4>Categories</h4>
<ul>
<?php wp_list_categories('title_li='); ?>
</ul>
</div><!-- END WIDGET -->
<div class="widget widget_archive">
<h4>Archives</h4>
<ul>
<?php wp_get_archives(); ?>
</ul>
</div><!-- END WIDGET -->
<div class="widget widget_tag_cloud">
<h4>Tags</h4>
<div class="tagcloud">
<?php wp_tag_cloud(); ?>
</div>
</div><!-- END WIDGET -->
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment