Hi Guys
Apple wants me to put the js for their auto affiliate link maker in the footer.
Where/how do I do that?
/Anders
Hi andersronnau!
Please add following code to Functions.php file in Appearance > Editor
function add_custom_apple(){
?>
<script>
YOUR CODE GOES HERE
</script>
<?php
}
add_action('wp_footer', 'add_custom_apple');
Cheers!
Yigit
Sweet. Thanks!