yay, aku dah boleh solve problem ko. sebenarnye gini, dia jadi gitu sebab xde file archive and category. so, bile ko pegi kat category/archive page, dia secara default tunjuk yg index punye. k, xyah pening pale, ko buat jer ape yang aku suruh buat nih

- copy file page.
- paste'kan and rename jadi archive.
- copy skali lagi file page
- paste'kan and rename jadi category.
pastu bukak file index. copy code kat bawah and relpace dengan semua code dlm index file tuh. pastu save.
<?php get_header(); ?>
<?php get_sidebar(); ?>
<!-- Content -->
<div id="content">
<!-- Advertisement -->
<div class="post">
<?php include (TEMPLATEPATH . '/ads/post.php'); ?>
</div>
<!-- /Advertisement -->
<?php if(have_posts()) : ?>
<?php $my_query = new WP_Query('showposts=1');
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<!-- Post -->
<div class="post" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="post-info">Posted on <?php the_time('F d, Y') ?> by <?php the_author() ?> in <?php the_category(', ') ?></div>
<div class="entry">
<?php the_content(__('(more...)')); ?>
</div>
<div class="post-comments">
<?php comments_popup_link('Comments (0)', 'Comment (1)', 'Comments (%)'); ?>
</div>
</div>
<!-- /Post -->
<div class="clear"></div>
<?php endwhile; ?>
<?php else : ?>
<!-- Post -->
<div class="post">
<h2>Not Found</h2>
<div class="entry">
<p>Sorry, but you are looking for something that isn't here.</p>
</div>
</div>
<!-- /Post -->
<?php endif; ?>
</div>
<!-- /Content -->
<?php get_footer(); ?>
amacam ?
