Advertisement
doron

functions

Sep 29th, 2014
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.17 KB | None | 0 0
  1. <?php
  2.  
  3. include TEMPLATEPATH.'/functions/templateTags.php';
  4. /*****************************************
  5. **  ENQUEUE MY STYLES & SCRIPTS
  6. *****************************************/
  7.  
  8. function enqueue_my_styles() {
  9.     $resetStyle         = get_template_directory_uri() . '/css/reset.css';
  10.     $mainStyle          = get_template_directory_uri() . '/style.css';
  11.     $rtlStyle           = get_template_directory_uri() . '/rtl.css';
  12.      
  13.     wp_enqueue_style( 'resetStyle', $resetStyle, array(), 'v1', 'all' );
  14.     wp_enqueue_style( 'mainStyle', $mainStyle, array(), 'v1', 'all' );
  15.     if ( is_rtl() ) {
  16.       wp_enqueue_style(  'style-rtl', $rtlStyle, array(), 'v1', 'all' );
  17.     }
  18. }    
  19.  
  20. add_action( 'wp_enqueue_scripts', 'enqueue_my_styles' );
  21.  
  22.  
  23. function register_my_jscripts() {
  24.     wp_deregister_script( 'jquery' );   // מוודאים שאין גרסת jquery אחרת!
  25.     wp_register_script( 'jquery', get_bloginfo('template_url').'/js/jquery-1.7.1.min.js');
  26.     wp_enqueue_script( 'jquery' );
  27.      
  28.     wp_enqueue_script( 'tooltip', get_bloginfo('template_url').'/js/tooltip.js', array('jquery'));
  29. }
  30. add_action('wp_enqueue_scripts', 'register_my_jscripts');
  31.  
  32. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement