Skip to content

webmention_form_submit_text

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

Auto-generated Example

/**
 * Callback function for the 'webmention_form_submit_text' filter.
 *
 * @param string $ping_me_ 
 * @return string The filtered value.
 */
function my_webmention_form_submit_text_callback( string $ping_me_ ) {
    // Your code here.
    return $ping_me_;
}
add_filter( 'webmention_form_submit_text', 'my_webmention_form_submit_text_callback' );

Parameters

  • string $ping_me_

Files

apply_filters( 'webmention_form_submit_text', __( 'Ping me!', 'webmention' ) )
apply_filters( 'webmention_form_submit_text', __( 'Ping me!', 'webmention' ) )

← All Hooks

Clone this wiki locally