From 6192591757bb1237be0d234943399bcc88e44a6f Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Tue, 16 Nov 2021 21:46:24 +0000 Subject: [PATCH] Twenty Twenty-One: Remove RSS feed widget icon link. Use the `rss_widget_feed_link` filter to disable the output of the icon on RSS feed widgets in Twenty Twenty-One. Improves accessibility by preventing invisible links. Props sabernhardt, poena. Fixes #52880. git-svn-id: https://develop.svn.wordpress.org/trunk@52191 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentytwentyone/functions.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/wp-content/themes/twentytwentyone/functions.php b/src/wp-content/themes/twentytwentyone/functions.php index 52c5bb5faf..452b5b3d22 100644 --- a/src/wp-content/themes/twentytwentyone/functions.php +++ b/src/wp-content/themes/twentytwentyone/functions.php @@ -338,6 +338,9 @@ if ( ! function_exists( 'twenty_twenty_one_setup' ) ) { // Add support for custom units. // This was removed in WordPress 5.6 but is still required to properly support WP 5.5. add_theme_support( 'custom-units' ); + + // Remove feed icon link from legacy RSS widget. + add_filter( 'rss_widget_feed_link', '__return_false' ); } } add_action( 'after_setup_theme', 'twenty_twenty_one_setup' );