Skip to content

Instantly share code, notes, and snippets.

@mayeenulislam
Created November 20, 2014 05:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mayeenulislam/3c50e5e093e34ec47977 to your computer and use it in GitHub Desktop.
Save mayeenulislam/3c50e5e093e34ec47977 to your computer and use it in GitHub Desktop.
Default WordPress widgets
<div id="secondary" class="widget-area">
<ul class="xoxo">
<?php if ( is_active_sidebar('primary_widget_area') ) : ?>
<?php dynamic_sidebar('primary_widget_area'); //load widgets from Admin Panel ?>
<?php else : ?>
<?php // Load the following widgets we are assigning here ?>
<li id="default-widget-1" class="widget-container default-widgets">
<h3 class="widget-title"><?php _e( 'Archives', 'theme-textdomain' ); ?></h3>
<ul>
<?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
</ul>
</li> <!-- #default-widget-1 -->
<li id="default-widget-2" class="widget-container default-widgets">
<h3 class="widget-title"><?php _e( 'Pages', 'theme-textdomain' ); ?></h3>
<ul>
<?php wp_list_pages('sort_column=menu_order&title_li='); ?>
</ul>
</li> <!-- #default-widget-2 -->
<li id="default-widget-3" class="widget-container default-widgets">
<h3 class="widget-title"><?php _e( 'Categories', 'theme-textdomain' ); ?></h3>
<ul>
<?php wp_list_categories( 'sort_column=menu_order&title_li=' ); ?>
</ul>
</li> <!-- #default-widget-3 -->
<li id="default-widget-4" class="widget-container default-widgets">
<h3 class="widget-title"><?php _e( 'Meta', 'theme-textdomain' ); ?></h3>
<ul>
<?php wp_register(); ?>
<li><?php wp_loginout(); ?></li>
<?php wp_meta(); ?>
</ul>
</li> <!-- #default-widget-4 -->
<?php endif; ?>
</ul> <!-- .xoxo -->
</div> <!-- #secondary .widget-area -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment