apply_filters( 'bloginfo', mixed $output , string $show )
Filters the site information returned by get_bloginfo() .
Parameters
-
$output
mixed -
The requested non-URL site information.
-
$show
string -
Type of information requested.
More Information
Note that the function calls to bloginfo("url")
, bloginfo("directory")
, and bloginfo("home")
will not have this filter hook applied (see bloginfo_url instead).
Source
File: wp-includes/general-template.php
.
View all references
$output = apply_filters( 'bloginfo', $output, $show );
Changelog
Version | Description |
---|---|
0.71 | Introduced. |