pingback_post action-hookWP 0.71

Fires after a post pingback has been sent.

Usage

add_action( 'pingback_post', 'wp_kama_pingback_post_action' );

/**
 * Function for `pingback_post` action-hook.
 * 
 * @param int $comment_id Comment ID.
 *
 * @return void
 */
function wp_kama_pingback_post_action( $comment_id ){

	// action...
}
$comment_id(int)
Comment ID.

Changelog

Since 0.71 Introduced.

Where the hook is called

wp_xmlrpc_server::pingback_ping()
pingback_post
wp-includes/class-wp-xmlrpc-server.php 7075
do_action( 'pingback_post', $comment_id );

Where the hook is used in WordPress

Usage not found.