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 |
---|---|
2577 |
|
2578 | /** |
2579 | * Fires after a page has been successfully deleted via XML-RPC. |
2580 | * |
2581 | * @since 3.4.0 |
2582 | * |
2583 | * @param int $page_id ID of the deleted page. |
2584 | * @param array $args An array of arguments to delete the page. |
2585 | */ |
2586 | do_action( 'xmlrpc_call_success_wp_deletePage', $page_id, $args ); |
2587 |
|
2588 | return(true); |
2589 | } |
2590 |
|
2591 | /** |
2592 | * Edit page. |
2593 | * |
2594 | * @since 2.2.0 |
2595 | * |