Created
February 23, 2016 02:54
-
-
Save jorgejaramillo/432fb83c519e6db8c398 to your computer and use it in GitHub Desktop.
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
| Esto va en el las funciones. | |
| if (function_exists('register_sidebar')) { | |
| register_sidebar(array( | |
| 'name' => 'Sidebar Widgets', | |
| 'id' => 'sidebar-widgets', | |
| 'description' => 'Widget Area', | |
| 'before_widget' => '<div id="one" class="two">', | |
| 'after_widget' => '</div>', | |
| 'before_title' => '<h2>', | |
| 'after_title' => '</h2>' | |
| )); | |
| } | |
| Esto va en el theme | |
| <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar Widgets') ) : ?> | |
| <?php endif; ?> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment