Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: xmlrpc_default_revision_fields

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
4609           } else {
4610                /**
4611                 * Filters the default revision query fields used by the given XML-RPC method.
4612                 *
4613                 * @since 3.5.0
4614                 *
4615                 * @param array  $field  An array of revision query fields.
4616                 * @param string $method The method name.
4617                 */
4618                $fields = apply_filters( 'xmlrpc_default_revision_fields', array( 'post_date', 'post_date_gmt' ), 'wp.getRevisions' );
4619           }
4620
4621           $user = $this->login( $username, $password );
4622           if ( ! $user ) {
4623                return $this->error;
4624           }
4625
4626           /** This action is documented in wp-includes/class-wp-xmlrpc-server.php */
4627           do_action( 'xmlrpc_call', 'wp.getRevisions' );