AtomFeed WordPress Class

The AtomFeed WordPress class is a simple yet powerful class that allows you to easily create and manage your own Atom feeds. With this class, you can easily add new items to your feed, edit existing items, and even delete items from your feed. You can also manage your Atom feed settings, such as the title, description, and language of your feed.

AtomFeed #

Structure that store common Atom Feed Properties

Contents


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

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.