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