Skip to content

Instantly share code, notes, and snippets.

@cjwd-snippets
Last active August 29, 2015 14:21
Show Gist options
  • Save cjwd-snippets/2427f77161df4ffe69be to your computer and use it in GitHub Desktop.
Save cjwd-snippets/2427f77161df4ffe69be to your computer and use it in GitHub Desktop.
Dynamically widgetize wordpress footer
register_sidebar([
'name' => __('Footer Top', 'cxc'),
'id' => 'footer-top',
'before_widget' => '<section class="layout__item widget %1$s %2$s">',
'after_widget' => '</section>',
'before_title' => '<h3>',
'after_title' => '</h3>',
]);
register_sidebar([
'name' => __('Footer Bottom', 'cxc'),
'id' => 'footer-bottom',
'before_widget' => '<section class="layout__item widget %1$s %2$s">',
'after_widget' => '</section>',
'before_title' => '<h3>',
'after_title' => '</h3>',
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment