should I escape a literal url added in functions.php
I added a snippet to my functions.php file to add credit card icons in the woocommerce checkout page. The icons are in my media library so I added the url of the image. This is not an input and it will not be changed, should I escape it anyway?
the code:
add_action ('woocommerce_review_order_before_submit', 'my_custom_woocommerce_icons');
function my_custom_woocommerce_icons() {
$icons = 'div class=checkout-icons-container
img src=https://mywebsite.com/wp-content/uploads/2022/01/visa02.png alt=visa /
img src=https://mywebsite.com/wp-content/uploads/2022/01/mastercard.png alt=mastercard/
/div';
echo $icons;
}