xmlrpc_call_success_blogger_deletePost action-hook . WP 3.4.0
Fires after a post has been successfully deleted via the XML-RPC Blogger API.
Usage
add_action( 'xmlrpc_call_success_blogger_deletePost', 'action_function_name_2304', 10, 2 ); function action_function_name_2304( $post_ID, $args ){ // action... }
- $post_ID(int)
- ID of the deleted post.
- $args(array)
- An array of arguments to delete the post.
Changelog
Since 3.4.0 | Introduced. |
Where the hook is called
xmlrpc_call_success_blogger_deletePost
wp-includes/class-wp-xmlrpc-server.php 5232
do_action( 'xmlrpc_call_success_blogger_deletePost', $post_ID, $args ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase