Thảo luận Hiển thị bài viết ngẫu nhiên có thumbnail không cần plugin trong Wordpress

  • Thread starter Thread starter Kidblood
  • Start date Start date
Kidblood

Kidblood

New Member
Chèn đoạn code sau vào nơi bạn muốn hiển thị.

Code:
<?php $navi_query = new WP_Query('posts_per_page=5&orderby=rand'); ?>
<?php while ($navi_query->have_posts()) : $navi_query->the_post(); ?>
<div class="thumbnail-post"><a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(array(40,40), array ('class' => 'alignleft')); ?></a>
<a title="<?php the_title(); ?>" href="<?php the_permalink(); ?>"><?php the_title(); ?></a></div>
<div class="clear"></div>
 
<?php endwhile; wp_reset_postdata(); ?>

Chèn đoạn code sau vào css
Code:
/*Thumbnail Posts*/
.thumbnail-post {
    background: none;
    height: 73px;
    overflow: hidden;
    padding:3px;
    position: relative;
    width: 280px;
}
.thumbnail-post a {float: none;}
.thumbnail-post img {
    float: left;
    width: 60px;
    height: 60px;
    padding: 3px;
    border: 1px solid #ddd;
    margin: 2px 2px 0 0;
    padding-bottom: 3px;
    display:inline;
}
.thumbnail  .clear {clear: both;}

Chỉnh sửa lại cho phù hợp nhé.
Chúc các bạn thành công.
 
Khéo phải tạo WP cho TTVN
 

Facebook Comments

Similar threads

cuongpro9x
Replies
3
Views
2K
cuongpro9xcuongpro9x is verified member.
cuongpro9x
Admin
Replies
0
Views
923
AdminAdmin is verified member.
Admin
Admin
Replies
0
Views
826
AdminAdmin is verified member.
Admin
Admin
Replies
0
Views
934
AdminAdmin is verified member.
Admin
Admin
Replies
2
Views
1K
AdminAdmin is verified member.
Admin
Admin
Replies
0
Views
2K
AdminAdmin is verified member.
Admin
Admin
Replies
0
Views
976
AdminAdmin is verified member.
Admin
Back
Top