wp_atom_server::__call() WordPress Method

The wp_atom_server::__call() method is used to handle calls to the WordPress Atom API. This method takes two arguments: the method name and an array of arguments. The method name is used to determine which API method to call, and the arguments are used to pass data to the API method.

wp_atom_server::__call( $name,  $arguments ) #


Source

File: wp-includes/pluggable-deprecated.php

		public function __call( $name, $arguments ) {
			_deprecated_function( __CLASS__ . '::' . $name, '3.5.0', 'the Atom Publishing Protocol plugin' );
		}

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.