Skip to content

Instantly share code, notes, and snippets.

@elvismdev
Created August 16, 2017 08:26
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 elvismdev/6bf449fc923a35299c8612167dbd10b4 to your computer and use it in GitHub Desktop.
Save elvismdev/6bf449fc923a35299c8612167dbd10b4 to your computer and use it in GitHub Desktop.
WordPress AddThis plugin - Override URL and Title to share via addthis_share variable https://www.addthis.com/academy/the-addthis_share-variable/
<?php
add_filter( 'addthis_share_array', function ( $addthis_share ) {
$addthis_share['title'] = 'My custom title';
$addthis_share['url'] = 'http://example.com/my-custom-title';
return $addthis_share;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment