Skip to content

Instantly share code, notes, and snippets.

@sharkyak
Created December 17, 2015 07:25
Show Gist options
  • Select an option

  • Save sharkyak/0fb8fcc53f8516866076 to your computer and use it in GitHub Desktop.

Select an option

Save sharkyak/0fb8fcc53f8516866076 to your computer and use it in GitHub Desktop.
wp widget
if (function_exists('register_sidebar')) {
register_sidebar(array(
'name'=> 'ТОП_1',
'id' => 'top1',
'before_widget' => '<div class="hero-egg-wrap">',
'after_widget' => '</div>',
'before_title' => '<div class="hero-egg1">',
'after_title' => '</div>',
));
}
<?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('top1')) : ?>
[ do default stuff if no widgets ]
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment