Advertisement
slkmclaren

Custom Slider

Jan 23rd, 2013
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. /*-----------------------------------------------------------------------------------*/
  2. /* You can add custom functions below */
  3. /*-----------------------------------------------------------------------------------*/
  4.  
  5. add_action( 'woo_content_before', 'woo_custom_add_slider', 12 );
  6.  
  7. function woo_custom_add_slider () {
  8.    
  9.     if(is_home() || is_front_page()) {
  10.         echo do_shortcode('[all_in_one_contentSlider settings_id=1]');
  11.     }    
  12. } // End woo_custom_add_slider()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement