-
-
Notifications
You must be signed in to change notification settings - Fork 31
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.
/**
* 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' );-
array$commentdata
do_action( 'webmention_target_updated_notification', $commentdata )