register_sidebar( array|string $args = array() )
Builds the definition for a single sidebar and returns the ID.
Description Description
Accepts either a string or an array and then parses that against a set of default arguments for the new sidebar. WordPress will automatically generate a sidebar ID and name based on the current number of registered sidebars if those arguments are not included.
When allowing for automatic generation of the name and ID parameters, keep in mind that the incrementor for your sidebar can change over time depending on what other plugins and themes are installed.
If theme support for ‘widgets’ has not yet been added when this function is called, it will be automatically enabled through the use of add_theme_support()
Parameters Parameters
- $args
-
(array|string) (Optional) Array or string of arguments for the sidebar being registered.
- 'name'
(string) The name or title of the sidebar displayed in the Widgets interface. Default 'Sidebar $instance'. - 'id'
(string) The unique identifier by which the sidebar will be called. Default 'sidebar-$instance'. - 'description'
(string) Description of the sidebar, displayed in the Widgets interface. Default empty string. - 'class'
(string) Extra CSS class to assign to the sidebar in the Widgets interface. - 'before_widget'
(string) HTML content to prepend to each widget's HTML output when assigned to this sidebar. Default is an opening list item element. - 'after_widget'
(string) HTML content to append to each widget's HTML output when assigned to this sidebar. Default is a closing list item element. - 'before_title'
(string) HTML content to prepend to the sidebar title when displayed. Default is an opening h2 element. - 'after_title'
(string) HTML content to append to the sidebar title when displayed. Default is a closing h2 element.
Default value: array()
- 'name'
Return Return
(string) Sidebar ID added to $wp_registered_sidebars global.
Source Source
File: wp-includes/widgets.php
function register_sidebar( $args = array() ) { global $wp_registered_sidebars; $i = count( $wp_registered_sidebars ) + 1; $id_is_empty = empty( $args['id'] ); $defaults = array( 'name' => sprintf( __( 'Sidebar %d' ), $i ), 'id' => "sidebar-$i", 'description' => '', 'class' => '', 'before_widget' => '<li id="%1$s" class="widget %2$s">', 'after_widget' => "</li>\n", 'before_title' => '<h2 class="widgettitle">', 'after_title' => "</h2>\n", ); $sidebar = wp_parse_args( $args, $defaults ); if ( $id_is_empty ) { /* translators: 1: the id argument, 2: sidebar name, 3: recommended id value */ _doing_it_wrong( __FUNCTION__, sprintf( __( 'No %1$s was set in the arguments array for the "%2$s" sidebar. Defaulting to "%3$s". Manually set the %1$s to "%3$s" to silence this notice and keep existing sidebar content.' ), '<code>id</code>', $sidebar['name'], $sidebar['id'] ), '4.2.0' ); } $wp_registered_sidebars[ $sidebar['id'] ] = $sidebar; add_theme_support( 'widgets' ); /** * Fires once a sidebar has been registered. * * @since 3.0.0 * * @param array $sidebar Parsed arguments for the registered sidebar. */ do_action( 'register_sidebar', $sidebar ); return $sidebar['id']; }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
2.2.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
This example creates a sidebar named “Main Sidebar” with and before and after the title.
Expand full source codeCollapse full source code
Sidebar id must be in lowercase ! (and no spaces)
From codex: id – Sidebar id – Must be all in lowercase, with no spaces (default is a numeric auto-incremented ID). If you do not set the id argument value, you will get E_USER_NOTICE messages in debug mode, starting with version 4.2.
Expand full source codeCollapse full source code
To output registered sidebar: