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
4176           } else {
4177                /**
4178                 * Filter the default revision query fields used by the given XML-RPC method.
4179                 *
4180                 * @since 3.5.0
4181                 *
4182                 * @param array  $field  An array of revision query fields.
4183                 * @param string $method The method name.
4184                 */
4185                $fields = apply_filters( 'xmlrpc_default_revision_fields', array( 'post_date', 'post_date_gmt' ), 'wp.getRevisions' );
4186           }
4187
4188           if ( ! $user = $this->login( $username, $password ) )
4189                return $this->error;
4190
4191           /** This action is documented in wp-includes/class-wp-xmlrpc-server.php */
4192           do_action( 'xmlrpc_call', 'wp.getRevisions' );
4193
4194           if ( ! $post = get_post( $post_id ) )