Skip to content

webmention_send_vars

github-actions[bot] edited this page Jan 3, 2026 · 1 revision

Auto-generated Example

/**
 * Callback function for the 'webmention_send_vars' filter.
 *
 * @param mixed $body 
 * @param mixed $post_id 
 * @return mixed The filtered value.
 */
function my_webmention_send_vars_callback( $body, $post_id ) {
    // Your code here.
    return $body;
}
add_filter( 'webmention_send_vars', 'my_webmention_send_vars_callback', 10, 2 );

Parameters

  • $body
  • $post_id

Files

apply_filters( 'webmention_send_vars', $body, $post_id )

← All Hooks

Clone this wiki locally