Created
December 24, 2014 11:10
-
-
Save tanjilahmed7/8d914fe7cf3a123dd565 to your computer and use it in GitHub Desktop.
Wedget in wp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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'); | |
| ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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