class wp_atom_server {}

In this article

Methods

NameDescription
wp_atom_server::__call
wp_atom_server::__callStatic

Source

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

User Contributed Notes

You must log in before being able to contribute a note or feedback.