register_widget_control()
Проверено на WordPress 6.9, обновлено Источник: WordPress Developer Resources.
Сигнатура
register_widget_control( int|string $name, callable $control_callback, int $width = '', int $height = '', mixed $params )
Описание
Позволяет $name быть массивом, который принимает либо три элемента — тогда для имени берутся первый и третий элементы, — либо использует для имени только первый элемент массива.
Передаёт управление в wp_register_widget_control() после того, как список аргументов сформирован.
См. alsowp_register_widget_control()
Оригинал (английский)
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_widget_control() after the argument list has been compiled.
Параметры
$name
int|string
обязательный
$control_callback
callable
обязательный
$width
int
необязательный
= ''
$height
int
необязательный
= ''
$params
mixed
обязательный
Исходный код
wp-includes/deprecated.php:2181
function register_widget_control($name, $control_callback, $width = '', $height = '', ...$params) {
_deprecated_function( __FUNCTION__, '2.8.0', 'wp_register_widget_control()' );
// 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( $width ) ) {
$options['width'] = $width;
}
if ( ! empty( $height ) ) {
$options['height'] = $height;
}
wp_register_widget_control( $id, $name, $control_callback, $options, ...$params );
}
История изменений
| Версия | Описание |
|---|---|
| 2.8.0 | Deprecated. Use wp_register_widget_control() |
| 2.2.0 | Introduced. |

