wp_atom_server WordPress Class
The wp_atom_server class is a Wordpress class that provides an Atom server for your blog. It is based on the Atom specification and allows you to syndicate your content to other sites and services.
wp_atom_server #
Source
File: wp-includes/pluggable-deprecated.php
class wp_atom_server { public function __call( $name, $arguments ) { _deprecated_function( __CLASS__ . '::' . $name, '3.5.0', 'the Atom Publishing Protocol plugin' ); } public static function __callStatic( $name, $arguments ) { _deprecated_function( __CLASS__ . '::' . $name, '3.5.0', 'the Atom Publishing Protocol plugin' ); } }
Expand full source codeCollapse full source codeView on TracView on GitHub