wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



register_sidebar_widget › WordPress Function

Od2.2.0
Przestarzały2.8.0
register_sidebar_widget ( $name, $output_callback, $classname = '', $params )
Parametry: (4)
  • (string|int) $name Widget ID.
    Wymagane: Tak
  • (callable) $output_callback Run when widget is called.
    Wymagane: Tak
  • (string) $classname Optional. Classname widget option. Default empty.
    Wymagane: Nie
    Domyślny: (puste)
  • (mixed) $params Widget parameters.
    Wymagane: Tak
Zobacz:
Zdefiniowane na:
Codex:

Register widget for sidebar with backward compatibility.

Allows $name to be an array that accepts either three elements to grab the first element and the third for the name or just uses the first element of the array for the name. Passes to wp_register_sidebar_widget() after argument list and backward compatibility is complete.


Źródło

function register_sidebar_widget($name, $output_callback, $classname = '', ...$params) {
	_deprecated_function( __FUNCTION__, '2.8.0', 'wp_register_sidebar_widget()' );
	// Compat.
	if ( is_array( $name ) ) {
		if ( count( $name ) === 3 ) {
			$name = sprintf( $name[0], $name[2] );
		} else {
			$name = $name[0];
		}
	}

	$id      = sanitize_title( $name );
	$options = array();
	if ( ! empty( $classname ) && is_string( $classname ) ) {
		$options['classname'] = $classname;
	}

	wp_register_sidebar_widget( $id, $name, $output_callback, $options, ...$params );
}