We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5c30549 + cc28d0f commit 3207030Copy full SHA for 3207030
header-footer-grid/templates/components/component-logo.php
@@ -47,11 +47,10 @@
47
48
$aria_label = trim( get_bloginfo( 'name' ) . ' ' . get_bloginfo( 'description' ) );
49
if ( $is_not_link ) {
50
- $start_tag = '<span class="brand" title="← ' . get_bloginfo( 'name' ) . '" aria-label="' . esc_attr( $aria_label ) . '">';
+ $start_tag = '<span class="brand" aria-label="' . esc_attr( $aria_label ) . '">';
51
$end_tag = '</span>';
52
} else {
53
- $start_tag = '<a class="brand" href="' . esc_url( home_url( '/' ) ) . '" title="← ' . get_bloginfo( 'name' ) . '"
54
- aria-label="' . esc_attr( $aria_label ) . '" rel="home">';
+ $start_tag = '<a class="brand" href="' . esc_url( home_url( '/' ) ) . '" aria-label="' . esc_attr( $aria_label ) . '" rel="home">';
55
$end_tag = '</a>';
56
}
57
0 commit comments