Skip to content

Commit

Permalink
Merge branch 'develop' into stage
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveJonesDev committed May 22, 2024
2 parents 51fc6e1 + d020663 commit 0e2db52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions template-parts/blocks/resource-links/resource-links.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,14 +93,14 @@
<li class="dropdown-li">
<a href="<?php echo esc_url( $manual_link_url ); ?>">
<?php
echo $icon ? '<img src="' . esc_url( $icon ) . '" aria-hidden="true" />' : '';
echo $icon ? '<img src="' . esc_url( $icon ) . '" aria-hidden="true" alt="" />' : '';
echo $manual_link_text ? '<span class="text">' . esc_html( $manual_link_text ) . '</span>' : '';
?>
</a>
</li>
<?php else : ?>
<li class="dropdown-li" role="tab" id="button-tab-<?php echo esc_attr( $key ); ?>" data-resourcelink="resource-link-<?php echo esc_attr( $key ); ?>" tabindex="0">
<img src="<?php echo esc_url( $icon ); ?>" />
<img src="<?php echo esc_url( $icon ); ?>" alt="" aria-hidden="true" />
<?php echo esc_html( $resource_list_link ); ?>
</li>
<?php endif; ?>
Expand Down

0 comments on commit 0e2db52

Please sign in to comment.