Skip to content

Instantly share code, notes, and snippets.

@robertuniqid
Created October 21, 2019 12:43
Show Gist options
  • Save robertuniqid/8008641f06b11f3f3e28819016768abe to your computer and use it in GitHub Desktop.
Save robertuniqid/8008641f06b11f3f3e28819016768abe to your computer and use it in GitHub Desktop.
Example Affiliate WP External Tracking.
<?php
if( isset( $_GET['ref'] ) ) {
add_action( "wp_footer", function() {
echo '<iframe src="your-shop-domain-goes-here/?ec-ref=true&ref=' . intval( $_GET['ref'] ) . '" style="width:1px !important;height:1px !important;opacity:0 !important;"></iframe>';
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment