wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_widget_description › WordPress Function

Seit2.5.0
Veraltetn/v
wp_widget_description ( $id )
Parameter:
  • (int|string) $id Widget ID.
    Erforderlich: Ja
Gibt zurück:
  • (string|void) Widget description, if available.
Definiert in:
Codex:

Retrieve description for widget.

When registering widgets, the options can also include 'description' that describes the widget for display on the widget administration panel or in the theme.


Quellcode

function wp_widget_description( $id ) {
	if ( ! is_scalar( $id ) ) {
		return;
	}

	global $wp_registered_widgets;

	if ( isset( $wp_registered_widgets[ $id ]['description'] ) ) {
		return esc_html( $wp_registered_widgets[ $id ]['description'] );
	}
}