MagpieRSS::is_atom()publicWP 1.0

Method of the class: MagpieRSS{}

No Hooks.

Return

null. Nothing (null).

Usage

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

MagpieRSS::is_atom() code WP 6.4.3

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