Skip to content

webmention_update_message

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

Filters the message that is returned when a Webmention already exists and was updated.

Auto-generated Example

/**
 * Filters the message that is returned when a Webmention already exists and was updated.
 *
 * @param string $message 
 * @return string The filtered value.
 */
function my_webmention_update_message_callback( string $message ) {
    // Your code here.
    return $message;
}
add_filter( 'webmention_update_message', 'my_webmention_update_message_callback' );

Parameters

  • string $message The update message.

Files

apply_filters( 'webmention_update_message', esc_html__( 'You already sent a Webmention for this target. The existing Webmention has been updated.', 'webmention' ) )

← All Hooks

Clone this wiki locally