-
-
Notifications
You must be signed in to change notification settings - Fork 31
webmention_form_submit_text
github-actions[bot] edited this page Jun 23, 2026
·
5 revisions
/**
* 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' );-
string$ping_me_
apply_filters( 'webmention_form_submit_text', __( 'Ping me!', 'webmention' ) )apply_filters( 'webmention_form_submit_text', __( 'Ping me!', 'webmention' ) )