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



wp_parse_widget_id › WordPress Function

Seit5.8.0
Veraltetn/v
wp_parse_widget_id ( $id )
Parameter:
  • (string) $id Widget ID.
    Erforderlich: Ja
Gibt zurück:
  • (array) Array containing a widget's id_base and number components.
Definiert in:
Codex:

Converts a widget ID into its id_base and number components.



Quellcode

function wp_parse_widget_id( $id ) {
	$parsed = array();

	if ( preg_match( '/^(.+)-(\d+)$/', $id, $matches ) ) {
		$parsed['id_base'] = $matches[1];
		$parsed['number']  = (int) $matches[2];
	} else {
		// Likely an old single widget.
		$parsed['id_base'] = $id;
	}

	return $parsed;
}