Source for file sidebar.php
Documentation is available at sidebar.php
* A module that registers a widgetized sidebar.
* Note that to prevent naming conflicts in the WordPress Widget Admin,
* the elastic prefix (default: 'elastic_') is added to the sidebar id.
* @author Daryl Koopersmith
add_action( $this->format_hook('_register_sidebars', 'admin'), array(&$this, '_admin_register_sidebars') );
add_action( $this->format_hook('_register_sidebars', ''), array(&$this, '_admin_register_sidebars') );
* Private. Prevents id conflicts on the Widgets Admin page by adding a prefix to each sidebar id.
* @param string $settings
* @author Daryl Koopersmith
$settings['id'] = elastic_get('prefix') . $settings['id'];
|