get_rss

Advertisement

Summery Summery

Display RSS items in HTML list items.

Syntax Syntax

get_rss( string $url, int $num_items = 5 )

Description Description

You have to specify which HTML list you want, either ordered or unordered before using the function. You also have to specify how many items you wish to display. You can’t display all of them like you can with wp_rss() function.

Parameters Parameters

$url

(Required) URL of feed to display. Will not auto sense feed URL.

$num_items

(Optional) Number of items to display, default is all.

Default value: 5

Return Return

(bool) False on failure.

Source Source

File: wp-includes/rss.php

			echo esc_html($item['title']);
			echo "</a><br />\n";
			echo "</li>\n";
		}
	} else {
		return false;
	}
}
endif;

Advertisement

Changelog Changelog

Changelog
Version Description
1.5.0 Introduced.

Advertisement

Leave a Reply