Changeset 55409 for trunk/src/wp-includes/widgets/class-wp-widget-rss.php
- Timestamp:
- 02/22/2023 10:00:08 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/widgets/class-wp-widget-rss.php
r52031 r55409 102 102 * Filters the classic RSS widget's feed icon link. 103 103 * 104 * Themes can remove the icon link by using `add_filter( 'rss_widget_feed_link', '__return_ false' );`.104 * Themes can remove the icon link by using `add_filter( 'rss_widget_feed_link', '__return_empty_string' );`. 105 105 * 106 106 * @since 5.9.0 107 107 * 108 * @param string $feed_link HTML for link to RSS feed.109 * @param array $instance Array of settings for the current widget.108 * @param string|false $feed_link HTML for link to RSS feed. 109 * @param array $instance Array of settings for the current widget. 110 110 */ 111 111 $feed_link = apply_filters( 'rss_widget_feed_link', $feed_link, $instance );
Note: See TracChangeset
for help on using the changeset viewer.