Filter the values sent to Akismet when checking an email preview.
jetpack_send_email_preview_akismet_values
jetpack_send_email_preview_akismet_valuesjetpack_send_email_preview_akismet_valuesFilter the values sent to Akismet when checking an email preview.
jetpack_top_posts_item_titleAllows modifying the title of each individual post returned by the Top Posts helper. Applies to both the Top Posts block’s front-end output and the REST response used by the block editor preview.
jetpack_block_notes_enabledTemporarily disabled while we investigate expensive API calls triggered by has_paid_ai_plan() on every Gutenberg page load for self-hosted sites. Filter allows tests and development to re-enable.
jetpack_activity_log_initializedFires once the Jetpack Activity Log package has wired its hooks.
jetpack_external_storage_initFires before the first external storage read. Use this hook to register your storage provider via External_Storage::register_provider(). This fires after the connection package classes are loaded but before any connection status checks read from external storage. Useful for mu-plugins that load before the plugin providing External_Storage, since add_action() does not require the action or any classes to exist at hook-registration time.
jetpack_external_storage_provider_registeredFires after an external storage provider is registered. This allows dependent systems (like the connection status cache in Manager) to invalidate state that may have been computed before the provider was available.
jetpack_connection_plugin_logosFilters a map of plugin slugs to custom logo URLs for the Settings → Connectors card. Add entries as `$slug => $url` pairs. URLs must point to an SVG file (`.svg` extension required); non-SVG values are silently ignored and the generic fallback icon is shown. Example: add_filter( ‘jetpack_connection_plugin_logos’, function ( $logos ) { $logos[‘my-plugin’] = plugins_url( ‘assets/logo.svg’, __FILE__ ); return $logos; } );
jetpack_forms_alphaFilter to enable or disable the wp-build-based Forms dashboard. Enabled by default since Central Forms Management is now available for all sites. Can be disabled by returning false from this filter.
jetpack_forms_email_show_actionsFilters whether to show action buttons in notification emails.
jetpack_forms_send_test_feedback_emailFilter whether test (preview) submissions should trigger the notification email.