Skip to content

webmention_target_updated_notification

github-actions[bot] edited this page Jun 23, 2026 · 2 revisions

Fires if the received webmention is not a response but just an update notification.

Auto-generated Example

/**
 * Fires if the received webmention is not a response but just an update notification.
 *
 * @param array $commentdata 
 */
function my_webmention_target_updated_notification_callback( array $commentdata ) {
    // Your code here.
}
add_action( 'webmention_target_updated_notification', 'my_webmention_target_updated_notification_callback' );

Parameters

  • array $commentdata

Files

do_action( 'webmention_target_updated_notification', $commentdata )

← All Hooks

Clone this wiki locally