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