// Hero Slider Shortcode - Show slider on any page hero section - [ntytp_hero_slider] - Ultra safe if(!function_exists('ntytp_v62_hero_slider_shortcode')){ function ntytp_v62_hero_slider_shortcode($atts){ $heroes = function_exists('ntytp_v62_get_heroes') ? ntytp_v62_get_heroes() : array(); if(empty($heroes) || !is_array($heroes)){ $heroes = array(1=>'',2=>'',3=>'',4=>'',5=>'',6=>'',7=>'',8=>''); } ob_start(); echo '
'; echo ''; return ob_get_clean(); } } add_shortcode('ntytp_hero_slider','ntytp_v62_hero_slider_shortcode');