دوستان متوجه شدم این کد owlcarusal با یکی از افزونه ها تداخل داره :
<script>$(document).ready(function() {$("#owl-example").owlCarousel();});</script>
چطوری تداخل رو برطرف کنم؟
دوم این که این کدیه که میخوام نمایش بدم:
<?php$args = array( 'post_type' => 'post', 'posts_per_page' => 10, 'orderby' => 'meta_value_num', 'meta_key' => 'views', 'order' => 'DESC',);$my_query = new WP_Query( $args );while ($my_query->have_posts()):$my_query->the_post();$do_not_duplicate = $post->ID; ?><?php $views = get_post_meta($post->ID, 'views', true); ?> <li class="mv"> <figure><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?phpif ( has_post_thumbnail() ){$src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'full' );$thumbnailsrc= $src[0];$params = array( 'width' => 119 ,'height' => 160, 'crop' => true );?><img src="<?php echo bfi_thumb( $thumbnailsrc , $params ) ?>" alt="<?php the_title(); ?>" title="<?php the_title(); ?>" width="119" height="160" /><?php } else { ?><img src="<?php bloginfo('template_directory'); ?>/images/df-tumbnail.png" alt="<?php the_title(); ?>" title="<?php the_title(); ?>" width="119" height="160" /><?php }?></a><figcaption><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></figcaption> <div class="mv-cat"><?php$category = get_the_category();if ($category) { echo '<a href="' . get_category_link( $category[0]->term_id ) . '" title="' . sprintf( __( "مشاهده تمام پست های %s" ), $category[0]->name ) . '" ' . '>' . $category[0]->name.'</a> ';}?></div></li><?php endwhile; ?></figure>
چطوری با استفاده از این اسلایدر نمایش بدمش؟
اینم کد های html معرفی شده توسط سایت owl carusal
<div id="owl-example" class="owl-carousel"> <div> Your Content </div> <div> Your Content </div> <div> Your Content </div> <div> Your Content </div> <div> Your Content </div> <div> Your Content </div> <div> Your Content </div> ...</div>