mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 17:18:32 +01:00
Docs: Properly mark the $classname
parameter as optional.
See #32246. Built from https://develop.svn.wordpress.org/trunk@36027 git-svn-id: http://core.svn.wordpress.org/trunk@35992 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
eb158d65c7
commit
543420158f
@ -2098,10 +2098,10 @@ function attribute_escape( $text ) {
|
||||
* @deprecated 2.8.0 Use wp_register_sidebar_widget()
|
||||
* @see wp_register_sidebar_widget()
|
||||
*
|
||||
* @param string|int $name Widget ID.
|
||||
* @param callable $output_callback Run when widget is called.
|
||||
* @param string $classname Classname widget option.
|
||||
* @param mixed $params ,... Widget parameters.
|
||||
* @param string|int $name Widget ID.
|
||||
* @param callable $output_callback Run when widget is called.
|
||||
* @param string $classname Optional. Classname widget option. Default empty.
|
||||
* @param mixed $params ,... Widget parameters.
|
||||
*/
|
||||
function register_sidebar_widget($name, $output_callback, $classname = '') {
|
||||
_deprecated_function( __FUNCTION__, '2.8', 'wp_register_sidebar_widget()' );
|
||||
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.5-alpha-36026';
|
||||
$wp_version = '4.5-alpha-36027';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user