• filter

    jetpack_connection_plugin_logos

    Filters 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; } );

  • filter

    jetpack_forms_alpha

    Filter 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.

  • filter

    jetpack_wp_abilities_should_register

    Filters whether an Abilities API category or ability should be registered. Returning false from any filter callback skips the registration, which is how consumers gate rollout per-site, per-user, or per feature flag. The filter fires once per category and once per individual ability, so callbacks can allow-list or deny-list by `$slug`.

  • filter

    jetpack_wp_abilities_enabled

    Filters whether Jetpack Abilities API registration should run. Default `false`. Return `true` to enable registration for this request, typically gated on a site option, user capability, or feature flag to support staged rollout.