Skip to content

Instantly share code, notes, and snippets.

@jorgejaramillo
Created February 23, 2016 02:54
Show Gist options
  • Select an option

  • Save jorgejaramillo/432fb83c519e6db8c398 to your computer and use it in GitHub Desktop.

Select an option

Save jorgejaramillo/432fb83c519e6db8c398 to your computer and use it in GitHub Desktop.
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