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' ); }
Expand full source codeCollapse full source codeView on TracView on GitHub