register_widget_control [ WordPress Function ]
| Parameters: |
|
| See: | |
| Defined at: |
|
Registers widget control callback for customizing options.
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 {@link wp_register_widget_control()} after the argument list has been compiled.
Source
<?php
function register_widget_control($name, $control_callback, $width = '', $height = '') {
_deprecated_function( __FUNCTION__, '2.8', '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;
$params = array_slice(func_get_args(), 4);
$args = array($id, $name, $control_callback, $options);
if ( !empty($params) )
$args = array_merge($args, $params);
call_user_func_array('wp_register_widget_control', $args);
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- Function Reference/register widget control « WordPress Codex
This function has been deprecated. That means it has been replaced by a new function or is no longer supported, and may be removed from future versions.
codex.wordpress.org - Function Reference/wp register widget control « WordPress Codex
Description. Registers widget control callback for customizing options. The options contains the height , width , and id_base keys. The height option is never ...
codex.wordpress.org - register_widget_control: deprecated | Smart Youtube | Vladimir's ...
Enabling WP_DEBUG I realised that somewhere in the code there is a deprecated function still in use. The debug message is as follows: ...
www.prelovac.com - Create Wordpress widget from scratch
Jan 1, 2009... name', array('Widget_name', 'widget')); register_widget_control('Widget name', array('Widget_name', 'control')); } } Our plugin should not ...
valums.com
Kullanýcý Tartýþmalarý [ wordpress.org ]
- M on "Usage of deprecated functions in functions.php"
- esmi on "Usage of deprecated functions in functions.php"
- M on "Usage of deprecated functions in functions.php"
- James on "[BUG] Akismet 2.3.0 - deprecated functions in main php file"
- gazouteast on "[BUG] Akismet 2.3.0 - deprecated functions in main php file"