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