MagpieRSS::is_rss()publicWP 1.0

Method of the class: MagpieRSS{}

No Hooks.

Return

null. Nothing (null).

Usage

$MagpieRSS = new MagpieRSS();
$MagpieRSS->is_rss ();

MagpieRSS::is_rss() code WP 6.5.2

function is_rss () {
	if ( $this->feed_type == RSS ) {
		return $this->feed_version;
	}
	else {
		return false;
	}
}