wp_sidebar_description

Definition:
function wp_sidebar_description( $id ) {}

Retrieve description for a sidebar.
When registering sidebars a ‘description’ parameter can be included that describes the sidebar for display on the widget administration panel.

Parameters

  • int|string $id: sidebar ID.

Return values

returns:Sidebar description, if available. Null on failure to retrieve description.

Source code

function wp_sidebar_description( $id ) {

	if ( !is_scalar($id) )

		return;



	global $wp_registered_sidebars;



	if ( isset($wp_registered_sidebars[$id]['description']) )

		return esc_html( $wp_registered_sidebars[$id]['description'] );

}

4129

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: