Filter the list of transient prefixes to clean up.
jetpack_stats_transient_cleanup_prefixes
jetpack_stats_transient_cleanup_prefixesjetpack_stats_transient_cleanup_prefixesFilter the list of transient prefixes to clean up.
jetpack_subscription_comment_subscribe_skipFilters whether to skip comment subscription processing.
jetpack_forms_notes_enableEnable form notes feature in Jetpack Forms .
admin_footer-{$hook_suffix}Prints scripts or data after the default footer scripts.
admin_footerPrints scripts or data before the default footer scripts.
admin_headFires in head section for all admin pages.
admin_head-{$hook_suffix}Fires in head section for a specific admin page.
woocommerce_analytics_auto_install_proxy_speed_moduleFilter to control auto-installation of the proxy speed module mu-plugin. When this filter returns false, the mu-plugin file can’t be added automatically.
jetpack_forms_email_powered_by_htmlFilter the HTML for the powered by section in the email.
jetpack_forms_extra_webhooksFilters the list of extra webhooks to be called when a form is submitted. This filter allows developers to programmatically add webhook configurations that will receive form submission data. The webhooks added through this filter are merged with any webhooks already configured in the form’s attributes. Each webhook configuration array supports the following keys: – `webhook_id` (string, required): Unique identifier for the webhook. – `url` (string, required): The webhook URL to POST data to. – `method` (string, optional): HTTP method. Default ‘POST’. – `verified` (bool, optional): Whether the webhook is verified. Default false. – `format` (string, optional): Data format (‘json’). Default ‘json’. – `enabled` (bool, optional): Whether the webhook is enabled. Default false. Example usage: “` add_filter( ‘jetpack_forms_extra_webhooks’, function( $webhooks, $form ) { if ( $form->get_attribute( ‘id’ ) === ‘123’ ) { $webhooks[] = array( ‘webhook_id’ => ‘test-webhook-1’, ‘url’ => ‘[your webhook URL]’, ‘method’ => ‘POST’, ‘verified’ => false, ‘format’ => ‘json’, ‘enabled’ => true, ); } return $webhooks; }, 10, 2 ); “`