Skip to content

Instantly share code, notes, and snippets.

@bouveng
Created April 3, 2020 12:25
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 bouveng/32c5d3c71e1b061c846e065f0ddd18ea to your computer and use it in GitHub Desktop.
Save bouveng/32c5d3c71e1b061c846e065f0ddd18ea to your computer and use it in GitHub Desktop.
partner_id
add_action('wp_footer', 'add_partner_id');
function add_partner_id() {
echo '
<script>
( function( $ ) {
$("a[href*=\'thomann.de\']").each(function() {
$(this).attr("href", $(this).attr("href") + "?partner_id=XXXX");
});
} )( jQuery )
</script>
';
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment