add vào index.php
sửa: array(-7): 7 là id của chuyên mục
'posts_per_page' => 5: 5 là số bài viết của chuyên mục đưa ra trang chủ
Code:
<div id="navcat"> <h4>Tin tức HOT</h4>
</div>
<?php query_posts(array('category__and' => [COLOR=#ff0000]array(-7)[/COLOR], '[COLOR=#0000cd]posts_per_page' => 5[/COLOR], 'ignore_sticky_posts' => 1, 'paged' => get_query_var('paged') ? get_query_var('paged') : 1)); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post odd" id="post-1054"> <div class="title">
<img src="/images/baiviet.gif"> <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> - <?php setPostViews(get_the_ID()); ?><?php echo getPostViews(get_the_ID()); ?>
</div> </div>
<?php endwhile; ?>
<?php else : ?>
<h2>Không có bài viết nào hết! :(</h2>
<?php endif; ?>
sửa: array(-7): 7 là id của chuyên mục
'posts_per_page' => 5: 5 là số bài viết của chuyên mục đưa ra trang chủ