변경
<div id="slider">
<?php
$carousel_cat = get_theme_mod('carousel_setting','1');
$carousel_count = get_theme_mod('count_setting','4');
$new_query = new WP_Query(array('showposts' => $carousel_count, 'meta_key' => 'wpb_post_views_count', 'orderby' => 'meta_value_num', 'order' => 'DESC')); ?>
<div class="item">
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('carousel-pic'); ?></a>
<h3> <?php the_title();?> </h3>
</div>
<?php
endwhile;
wp_reset_postdata();
?>
</div>
내 carousel.php
입니다.
다음은 속임수를 쓰고 코드를 깨뜨리는 것입니다.
<div id="slider">
<?php
$carousel_cat = get_theme_mod('carousel_setting','1');
$carousel_count = get_theme_mod('count_setting','4');
$month = date('m');
$year = date('Y');
$new_query = new WP_Query(array('posts_per_page' => $carousel_count, 'meta_key' => 'wpb_post_views_count', 'orderby' => 'meta_value_num', 'order' => 'DESC')); ?>
<?php if ($new_query->have_posts()) : ?>
<?php while ($new_query->have_posts()) : $new_query->the_post(); ?>
<div class="item">
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('thumbnail'); ?></a>
<?php // the_post_thumbnail('thumbnail'); Thumbnail (150 x 150 hard cropped) If you want anyother size you can change ?>
<h3> <?php the_title();?> </h3>
</div>
<?php endwhile; wp_reset_postdata(); ?>
<?php else : ?>
<p><?php _e('Sorry, No Popular Posts Found '); ?></p>
<?php endif; ?>
</div>
그러나 이것은 회전 목마에서 내 웹 사이트에있는 가장 중요한 게시물을 보여줄 것입니까? – user6738171
기존 라인을 대체하여이 라인을 carousel.php 파일에 추가하십시오. $ carousel_cat, 'meta_key'=> 'wpb_post_views_count', 'orderby'=> 'meta_value_num', 'order'=> 'DESC '));' –
게시물 뷰를 기준으로 분류되지 않은 게시물을 모두 표시하므로 인기 게시물로 표시됩니다. –