mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-01 15:50:09 +00:00
Docs: Use more specific types in parameter descriptions in place of mixed.
See #48303. git-svn-id: https://develop.svn.wordpress.org/trunk@47397 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -823,8 +823,8 @@ function get_bloginfo( $show = '', $filter = 'raw' ) {
|
||||
*
|
||||
* @since 2.0.5
|
||||
*
|
||||
* @param mixed $output The URL returned by bloginfo().
|
||||
* @param mixed $show Type of information requested.
|
||||
* @param string $output The URL returned by bloginfo().
|
||||
* @param string $show Type of information requested.
|
||||
*/
|
||||
$output = apply_filters( 'bloginfo_url', $output, $show );
|
||||
} else {
|
||||
@@ -833,8 +833,8 @@ function get_bloginfo( $show = '', $filter = 'raw' ) {
|
||||
*
|
||||
* @since 0.71
|
||||
*
|
||||
* @param mixed $output The requested non-URL site information.
|
||||
* @param mixed $show Type of information requested.
|
||||
* @param mixed $output The requested non-URL site information.
|
||||
* @param string $show Type of information requested.
|
||||
*/
|
||||
$output = apply_filters( 'bloginfo', $output, $show );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user