AtomFeed

Structure that store common Atom Feed Properties


Description Description


Source Source

File: wp-includes/atomlib.php

class AtomFeed {
	/**
	 * Stores Links
	 * @var array
	 * @access public
	 */
    var $links = array();
    /**
     * Stores Categories
     * @var array
     * @access public
     */
    var $categories = array();
	/**
	 * Stores Entries
	 *
	 * @var array
	 * @access public
	 */
    var $entries = array();
}

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.