'; $markup .= '

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

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

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

'; } $markup .= ''; return $markup; } endif; /* * Get the custom image logo */ function aari_custom_logo_dark() { if ( ! get_theme_mod( 'custom_logo' ) ) { return false; } $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 '' . esc_html( get_bloginfo( 'name', 'display' ) ) . ''; } else { return false; } }