Skip to content

Instantly share code, notes, and snippets.

@jgarciaruiz
Created February 16, 2016 09:20
Show Gist options
  • Save jgarciaruiz/0bcfeca12447765523f6 to your computer and use it in GitHub Desktop.
Save jgarciaruiz/0bcfeca12447765523f6 to your computer and use it in GitHub Desktop.
Add custom code to specific wp page snippet
function custom_code(){
if ( is_page( 102 )) {
?>
<!-- TRACKING CODE OR WHATEVER -->
<?php
}
}
add_action('wp_footer', 'custom_code');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment