AtomEntry WordPress Class
The AtomEntry class is a WordPress class that is used to represent an Atom entry. It is used to store and retrieve information about an Atom entry.
AtomEntry #
Structure that store Atom Entry Properties
Contents
Source
File: wp-includes/atomlib.php
class AtomEntry {
/**
* Stores Links
* @var array
* @access public
*/
var $links = array();
/**
* Stores Categories
* @var array
* @access public
*/
var $categories = array();
}
Expand full source codeCollapse full source codeView on TracView on GitHub