Bỏ qua cache css trên wordpress
23/07/2024
05/02/2023 - 163
<?php $postquery = new WP_Query(array('posts_per_page' => 35, 'orderby' => 'rand')); if ($postquery->have_posts()) { while ($postquery->have_posts()) : $postquery->the_post(); $do_not_duplicate = $post->ID; ?> <li> <a href="<?php the_permalink();?>"><?php the_title();?></a> </li> <?php endwhile; } wp_reset_postdata(); ?>
Đoạn code trên lấy 35 bài viết ngẫu nhiên.