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();
}

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.