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(); }
Expand full source codeCollapse full source codeView on TracView on GitHub