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 |
---|---|
4200 | } else { |
4201 | /** |
4202 | * Filters the default revision query fields used by the given XML-RPC method. |
4203 | * |
4204 | * @since 3.5.0 |
4205 | * |
4206 | * @param array $field An array of revision query fields. |
4207 | * @param string $method The method name. |
4208 | */ |
4209 | $fields = apply_filters( 'xmlrpc_default_revision_fields', array( 'post_date', 'post_date_gmt' ), 'wp.getRevisions' ); |
4210 | } |
4211 |
|
4212 | if ( ! $user = $this->login( $username, $password ) ) |
4213 | return $this->error; |
4214 |
|
4215 | /** This action is documented in wp-includes/class-wp-xmlrpc-server.php */ |
4216 | do_action( 'xmlrpc_call', 'wp.getRevisions' ); |
4217 |
|
4218 | if ( ! $post = get_post( $post_id ) ) |