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
4584           } else {
4585                /**
4586                 * Filters the default revision query fields used by the given XML-RPC method.
4587                 *
4588                 * @since 3.5.0
4589                 *
4590                 * @param array  $field  An array of revision query fields.
4591                 * @param string $method The method name.
4592                 */
4593                $fields = apply_filters( 'xmlrpc_default_revision_fields', array( 'post_date', 'post_date_gmt' ), 'wp.getRevisions' );
4594           }
4595
4596           $user = $this->login( $username, $password );
4597           if ( ! $user ) {
4598                return $this->error;
4599           }
4600
4601           /** This action is documented in wp-includes/class-wp-xmlrpc-server.php */
4602           do_action( 'xmlrpc_call', 'wp.getRevisions' );