Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. function jqlb_css(){   
  2.     if(is_admin() || is_feed()){return;}
  3.     $locale = jqlb_get_locale();
  4.     $fileName = "lightbox.min.$locale.css";
  5.     $path = JQLB_PLUGIN_DIR . "/styles/{$fileName}";
  6.     if(!is_readable($path)){
  7.         $fileName = 'lightbox.min.css';
  8.     }
  9.     wp_enqueue_style('jquery.lightbox.min.css', JQLB_STYLES_URL . $fileName, false, '1.3');
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement