kalponikoronno

load conditional style css for front page

Feb 19th, 2015
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. <?php
  2. function lander_scripts() {
  3.     if( is_front_page() ) {
  4.         wp_enqueue_scripts('lander-styles', get_stylesheet-directory_uri().'/lander-style.css');
  5.     }
  6. }
  7. add_action('wp_enqueue_scripts', 'lander_scripts');
  8. ?>
Advertisement
Add Comment
Please, Sign In to add comment