Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hmbashar/c5cddfaf57869c3c9ec00dc9274a9eb3 to your computer and use it in GitHub Desktop.
Save hmbashar/c5cddfaf57869c3c9ec00dc9274a9eb3 to your computer and use it in GitHub Desktop.
<?php
function my_enqueue_stuff() {
if ( is_page( 'landing-page-template-one' ) ) {
/** Call landing-page-template-one enqueue */
} else {
/** Call regular enqueue */
}
}
add_action( 'wp_enqueue_scripts', 'my_enqueue_stuff' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment