Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/6199396 to your computer and use it in GitHub Desktop.
Save braddalton/6199396 to your computer and use it in GitHub Desktop.
add_action( 'wp_enqueue_scripts', 'wpsites_landing_style_sheet' );
function wpsites_landing_style_sheet() {
if ( is_page_template('page_landing.php') ) {
wp_register_style( 'landing-page', get_template_directory_uri() . 'landing-page.css', array(), '20130810');
wp_enqueue_style( 'landing-page' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment