';
$output .= '<'.$logo_tag.' class="usa-logo-text">';
$output .= ''.get_bloginfo( 'name' ).'';
$output .= ''.$logo_tag.'>';
$output .= '';
else:
$url = uswds_get_custom_logo($logo_id);
$output .= '
';
endif;
return $output;
}
function uswds_navbar_brand() {
echo uswds_get_navbar_brand();
}
function uswds_get_custom_logo($logo_id){
$logo_id = get_theme_mod('custom_logo');
$thumb_id = get_post_thumbnail_id($logo_id);
$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];
}