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; } );
Parameters
- $logos
array<string, string> Map of plugin slug to SVG URL.
Changelog
- Introduced in Jetpack 8.3.2