Skip to content

Instantly share code, notes, and snippets.

@tanjilahmed7
Created December 24, 2014 11:10
Show Gist options
  • Select an option

  • Save tanjilahmed7/8d914fe7cf3a123dd565 to your computer and use it in GitHub Desktop.

Select an option

Save tanjilahmed7/8d914fe7cf3a123dd565 to your computer and use it in GitHub Desktop.
Wedget in wp
<?php
function morderna_theme_wedgets(){
register_sidebar(array(
'name' => 'Footer Wedgets',
'id' => 'footer_wid',
'description' => 'Use this wedget for your side footer content ',
'before_widget' => '<div class="col-lg-3"><div class="widget footer_wedget">',
'after_widget' => '</div></div>',
'before_title' => '<h5 class="widgetheading">',
'after_title' => '</h5>'
));
}
add_action('init','morderna_theme_wedgets');
?>
<?php if ( ! dynamic_sidebar( 'footer_wid' ) ) : ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment