WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
4295 | } else { |
4296 | /** |
4297 | * Filters the default revision query fields used by the given XML-RPC method. |
4298 | * |
4299 | * @since 3.5.0 |
4300 | * |
4301 | * @param array $field An array of revision query fields. |
4302 | * @param string $method The method name. |
4303 | */ |
4304 | $fields = apply_filters( 'xmlrpc_default_revision_fields', array( 'post_date', 'post_date_gmt' ), 'wp.getRevisions' ); |
4305 | } |
4306 |
|
4307 | if ( ! $user = $this->login( $username, $password ) ) |
4308 | return $this->error; |
4309 |
|
4310 | /** This action is documented in wp-includes/class-wp-xmlrpc-server.php */ |
4311 | do_action( 'xmlrpc_call', 'wp.getRevisions' ); |
4312 |
|
4313 | if ( ! $post = get_post( $post_id ) ) |