/**
 * Outputs the site logo.
 *
 * @author Justin Tadlock <*****@*****.**>
 * @author Cherry Team <*****@*****.**>
 * @since  4.0.0
 * @return void
 */
function cherry_site_logo()
{
    /**
     * Filter the displayed the site title.
     *
     * @since 4.0.0
     */
    echo apply_filters('cherry_site_logo', cherry_get_site_title());
}
/**
 * Display the site logo.
 *
 * @author Justin Tadlock <*****@*****.**>
 * @author Cherry Team <*****@*****.**>
 * @since  4.0.0
 * @return void
 */
function cherry_site_logo()
{
    echo cherry_get_site_title();
}