我正在创建自定义帖子类型,我创建了猫头鹰轮播滑块功能,我的问题是我想在自定义帖子类型代码中显示轮播滑块.....
function custom_owlcarousel(){
wp_enqueue_script('jquery', "http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js", false, '2.0.3', true);
wp_enqueue_script('owl-min', get_stylesheet_directory_uri().'/owl/owl.carousel.min.js', array('jquery'), NULL, true);
wp_enqueue_style( 'owl-carousel-style', get_stylesheet_directory_uri().'/owl/owl.carousel.css');
wp_enqueue_style( 'owl-trans-style', get_stylesheet_directory_uri().'/owl/owl.transitions.css' );
} add_action('wp_enqueue_scripts','custom_owlcarousel');