'; $markup .= '

' . get_bloginfo('name', 'display') . '

'; if ((get_theme_mod('header_text') !== 0) && (get_bloginfo('description') !== '')) { $markup .= '

' . get_bloginfo('description', 'display') . '

'; } $markup .= ''; return $markup; } endif; /* * Get the custom image logo */ function aari_custom_logo_dark() { $custom_logo_id = get_theme_mod('custom_logo'); $custom_logo_url = wp_get_attachment_image_url($custom_logo_id, 'full'); if ($custom_logo_url) { return '' . get_bloginfo('name', 'display') . ''; } else { return false; } }