From ef1f20228a0266cc152706904cac3162329928f3 Mon Sep 17 00:00:00 2001 From: Jeffrey Pearce Date: Thu, 11 May 2023 13:30:21 -0400 Subject: [PATCH] Updates Storefront Credit in the footer for SEO. (#2096) Adds nofollow rel attribute to footer credit links. --- inc/storefront-template-functions.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/storefront-template-functions.php b/inc/storefront-template-functions.php index b19a096cc..57d40a07c 100644 --- a/inc/storefront-template-functions.php +++ b/inc/storefront-template-functions.php @@ -139,9 +139,9 @@ function storefront_credit() { if ( apply_filters( 'storefront_credit_link', true ) ) { if ( storefront_is_woocommerce_activated() ) { - $links_output .= '' . esc_html__( 'Built with Storefront & WooCommerce', 'storefront' ) . '.'; + $links_output .= '' . esc_html__( 'Built with Storefront & WooCommerce', 'storefront' ) . '.'; } else { - $links_output .= '' . esc_html__( 'Built with Storefront', 'storefront' ) . '.'; + $links_output .= '' . esc_html__( 'Built with Storefront', 'storefront' ) . '.'; } }