In this article

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

Parameters

$logos
array<string, string>

Map of plugin slug to SVG URL.

Changelog

How to use this hook

See “How to use actions and filters to customize Jetpack”.