Skip to content

Instantly share code, notes, and snippets.

@henshaw
Created August 14, 2021 00:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save henshaw/9a7747f89c9a33b007d7a94deaf152ad to your computer and use it in GitHub Desktop.
Save henshaw/9a7747f89c9a33b007d7a94deaf152ad to your computer and use it in GitHub Desktop.
WordPress Plugin Directory Trademark Abuse
// Domains from which exceptions would be accepted.
$trademark_exceptions = array(
'yoast.com' => array( 'yoast' ),
'automattic.com' => array( 'akismet', 'akismet-', 'jetpack', 'jetpack-', 'wordpress', 'wp-', 'woo', 'woo-', 'woocommerce', 'woocommerce-' ),
'facebook.com' => array( 'facebook', 'instagram', 'oculus', 'whatsapp' ),
'support.microsoft.com' => array( 'bing-', 'microsoft-' ),
'trustpilot.com' => array( 'trustpilot' ),
'microsoft.com' => array( 'bing-', 'microsoft-' ),
);
@henshaw
Copy link
Author

henshaw commented Aug 14, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment