Skip to content

Instantly share code, notes, and snippets.

@billerickson
Last active June 7, 2016 23:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/1f98c63193ab64f8a53f126d1a5d2c2a to your computer and use it in GitHub Desktop.
Save billerickson/1f98c63193ab64f8a53f126d1a5d2c2a to your computer and use it in GitHub Desktop.
<?php
/**
* Default Widget Area Arguments
*
* @param array $args
* @return array $args
*/
function ea_widget_area_args() {
return array(
'description' => '',
'before_widget' => '<section id="%1$s" class="widget %2$s">',
'after_widget' => '</section>',
'before_title' => '<h6 class="widget-title">',
'after_title' => '</h6>',
);
}
add_filter( 'be_sidebar_selector_widget_area_args', 'ea_widget_area_args' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment