We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Fired when a domain or keyword is blocked site-wide.
/** * Fired when a domain or keyword is blocked site-wide. * * @param string $value * @param string $type */ function my_activitypub_add_site_block_callback( string $value, string $type ) { // Your code here. } add_action( 'activitypub_add_site_block', 'my_activitypub_add_site_block_callback', 10, 2 );
string
$value
$type
\do_action( 'activitypub_add_site_block', $value, $type )
← All Hooks