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



wp_customize_url › WordPress Function

Seit3.4.0
Veraltetn/v
wp_customize_url ( $stylesheet = '' )
Parameter:
  • (string) $stylesheet Optional. Theme to customize. Defaults to active theme. The theme's stylesheet will be urlencoded if necessary.
    Erforderlich: Nein
    Standard: (leer)
Gibt zurück:
  • (string)
Definiert in:
Codex:

Returns a URL to load the Customizer.



Quellcode

function wp_customize_url( $stylesheet = '' ) {
	$url = admin_url( 'customize.php' );
	if ( $stylesheet ) {
		$url .= '?theme=' . urlencode( $stylesheet );
	}
	return esc_url( $url );
}