'
: get_bloginfo('name', 'display');
$output .= '
';
return $output;
else :
$output .= '';
return $output;
endif;
}
function benjamin_navbar_brand()
{
echo benjamin_get_navbar_brand(); // WPCS: xss ok.
}
function benjamin_get_custom_logo($logo_id = null)
{
$logo_id = get_theme_mod('custom_logo', null);
if (!$logo_id) {
return false;
}
$thumb_url_array = wp_get_attachment_image_src($logo_id, 'full', true);
if (strpos(reset($thumb_url_array), 'wp-includes/images/media/default.png')) {
return false;
}
return $thumb_url_array[0];
}