Title: AtomFeed
Published: April 25, 2014
Last modified: May 20, 2026

---

# class AtomFeed {}

[ Back to top](https://developer.wordpress.org/reference/classes/atomfeed/?output_format=md#wp--skip-link--target)

Structure that store common Atom Feed Properties

## Source

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

[View all references](https://developer.wordpress.org/reference/files/wp-includes/atomlib.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/7.0/src/wp-includes/atomlib.php#L18)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.0/src/wp-includes/atomlib.php#L18-L38)

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Fclasses%2Fatomfeed%2F)
before being able to contribute a note or feedback.