bloginfo_url filter-hook . WP 2.0.5
Filters the URL returned by get_bloginfo().
Usage
add_filter( 'bloginfo_url', 'filter_function_name_3631', 10, 2 ); function filter_function_name_3631( $output, $show ){ // filter... return $output; }
- $output(string)
- The URL returned by bloginfo().
- $show(string)
- Type of information requested.
Changelog
Since 2.0.5 | Introduced. |
Where the hook is called
bloginfo_url
wp-includes/general-template.php 889
$output = apply_filters( 'bloginfo_url', $output, $show );