Last active
July 28, 2019 07:14
-
-
Save hmbashar/c5cddfaf57869c3c9ec00dc9274a9eb3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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