我想用slick从 https://kenwheeler.github.io/slick/. 我使用WP\\u Query获取具有特定类别的帖子。油滑的工作finde,但它没有显示内容。这是我的PHP代码:
<div class=" container">
<div id="testimoni-carousel" class=\'row testimoni-carousel\' dir="rtl">
<?php
$args = array(
\'post_type\'=> \'post\',
\'category_name\' => \'komentar\'
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();
?>
<div class=\'text-center testimoni-teks col-12\'>
<h2 class=\'text-white\'><?php the_title() ?></h2>
<div class=\'text-white\'><?php the_content() ?></div>
</div>
<?php
}
wp_reset_postdata();
}
?>
</div>
</div>
这是我的JS文件:
jQuery(document).ready(function($) {
$(\'#testimoni-carousel\').slick({
dots: true,
slidesToShow: 1,
slidesToScroll: 1
});
});