-
-
Notifications
You must be signed in to change notification settings - Fork 31
webmention_comment_form
github-actions[bot] edited this page Jan 3, 2026
·
1 revision
/**
* Callback function for the 'webmention_comment_form' filter.
*
* @param mixed $WEBMENTION_PLUGIN_DIR.'templates/comment-form.php'
* @return mixed The filtered value.
*/
function my_webmention_comment_form_callback( WEBMENTION_PLUGIN_DIR.'templates/comment-form.php' ) {
// Your code here.
return WEBMENTION_PLUGIN_DIR.'templates/comment-form.php';
}
add_filter( 'webmention_comment_form', 'my_webmention_comment_form_callback' );WEBMENTION_PLUGIN_DIR.'templates/comment-form.php'
apply_filters( 'webmention_comment_form', WEBMENTION_PLUGIN_DIR . 'templates/comment-form.php' )