MagpieRSS::is_atom() WordPress Method
MagpieRSS::is_atom() is a method used in the MagpieRSS class to check if an XML document is an Atom feed or not.
MagpieRSS::is_atom() #
Source
File: wp-includes/rss.php
375 376 377 378 379 380 381 382 | function is_atom() { if ( $this ->feed_type == ATOM ) { return $this ->feed_version; } else { return false; } } |
Expand full source codeCollapse full source codeView on TracView on GitHub