bloginfo

The timeline below displays how wordpress function bloginfo has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 4.5

/**
 * Displays information about the current site.
 *
 * @since 0.71
 *
 * @see get_bloginfo() For possible `$show` values
 *
 * @param string $show Optional. Site information to display. Default empty.
 */
function bloginfo($show = '')
{
    echo get_bloginfo($show, 'display');
}

WordPress Version: 3.7

/**
 * Display information about the blog.
 *
 * @see get_bloginfo() For possible values for the parameter.
 * @since 0.71
 *
 * @param string $show What to display.
 */
function bloginfo($show = '')
{
    echo get_bloginfo($show, 'display');
}