wp_atom_server{}WP 2.2.0

Deprecated from version 3.5.0. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.

WordPress AtomPub API implementation.

Originally stored in wp-app.php, and later wp-includes/class-wp-atom-server.php. It is kept here in case a plugin directly referred to the class.

No Hooks.

Usage

$wp_atom_server = new wp_atom_server();
// use class methods

Methods

  1. public __call( $name, $arguments )
  2. public static __callStatic( $name, $arguments )

Changelog

Since 2.2.0 Introduced.
Deprecated since 3.5.0

wp_atom_server{} code WP 6.4.3

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