Chủ Nhật, 29 tháng 12, 2013

Hiển thị bài viết ngẫu nhiên trong wordpress

 Hiển thị bài viết ngẫu nhiên trong wordpress dùng thuộc thính 'orderby' => 'rand'
// hiển thị 5 bài viết ngẫu nhiên
 
 <?php
        global $post;
        $args = array('numberposts' => 5, 'category_name' => 'thiet-bi-ho-tro', 'orderby' => 'rand');
        $posts = get_posts($args);
        foreach ($posts as $post): setup_postdata($post);?>

// Echo nội dung
.......................
<?php endforeach ?>

Không có nhận xét nào:

Đăng nhận xét