wppaste
WordPress

WP_Widget_RSS

Since
2.8.0
Source
wp-includes/widgets/class-wp-widget-rss.php:17
Core class used to implement a RSS widget.

Compatibility

WordPress
since 2.8.0
  • 6.7.7
  • 6.8.8
  • 6.9.7
  • 7.0.4
  • 7.1.0

Present in every tracked release (6.7.7 to 7.1.0).

Hooks and filters fired · 3

Every hook that fires from inside WP_Widget_RSS, in the order it appears in the class, grouped by the method that fires it.

Methods · 4

  • __construct()Sets up a new RSS widget instance.
  • widget()Outputs the content for the current RSS widget instance.
  • update()Handles updating settings for the current RSS widget instance.
  • form()Outputs the settings form for the RSS widget.

Source code

class WP_Widget_RSS extends WP_Widget { 	/**	 * Sets up a new RSS widget instance.	 *	 * @since 2.8.0	 */	public function __construct() {		$widget_ops = array(			'description'                 => __( 'Entries from any RSS or Atom feed.' ),			'customize_selective_refresh' => true,			'show_instance_in_rest'       => true, 		);		$control_ops = array(			'width'  => 400,			'height' => 200,		);		parent::__construct( 'rss', __( 'RSS' ), $widget_ops, $control_ops );	} 	/**	 * Outputs the content for the current RSS widget instance.	 *	 * @since 2.8.0	 *	 * @param array $args     Display arguments including 'before_title', 'after_title',	 *                        'before_widget', and 'after_widget'.	 * @param array $instance Settings for the current RSS widget instance.	 */	public function widget( $args, $instance ) {		if ( isset( $instance['error'] ) && $instance['error'] ) {			return;		} 		$url = ! empty( $instance['url'] ) ? $instance['url'] : '';		while ( ! empty( $url ) && stristr( $url, 'http' ) !== $url ) {			$url = substr( $url, 1 );		} 		if ( empty( $url ) ) {			return;		} 		// Self-URL destruction sequence.		if ( in_array( untrailingslashit( $url ), array( site_url(), home_url() ), true ) ) {			return;		} 		$rss   = fetch_feed( $url );		$title = $instance['title'];		$desc  = '';		$link  = ''; 		if ( ! is_wp_error( $rss ) ) {			$desc = esc_attr( strip_tags( html_entity_decode( $rss->get_description(), ENT_QUOTES, get_option( 'blog_charset' ) ) ) );			if ( empty( $title ) ) {				$title = strip_tags( $rss->get_title() );			}			$link = strip_tags( $rss->get_permalink() );			while ( ! empty( $link ) && stristr( $link, 'http' ) !== $link ) {				$link = substr( $link, 1 );			}		} 		if ( empty( $title ) ) {			$title = ! empty( $desc ) ? $desc : __( 'Unknown Feed' );		} 		/** This filter is documented in wp-includes/widgets/class-wp-widget-pages.php */		$title = apply_filters( 'widget_title', $title, $instance, $this->id_base ); 		if ( $title ) {			$feed_link = '';			$feed_url  = strip_tags( $url );			$feed_icon = includes_url( 'images/rss.png' );			$feed_link = sprintf(				'<a class="rsswidget rss-widget-feed" href="%1$s"><img class="rss-widget-icon" style="border:0" width="14" height="14" src="%2$s" alt="%3$s"%4$s /></a> ',				esc_url( $feed_url ),				esc_url( $feed_icon ),

Changelog

Introduced in 2.8.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 6.8.8 tag, from src/wp-includes/widgets/class-wp-widget-rss.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.
Corrections
Something wrong on this page? Report it and it gets fixed in the next regeneration.