แบบไม่ใช่ them มีใหมครับ
ถ้าไม่อยากใช้ Theme ต้องแก้ค่า Theme เองครับ เช่น
ในไฟล์ index.php หาค่า
<?php if (have_posts()) : ?>
แก้เป็นประมาณนี้
<?php if (have_posts()) : ?>
<div class="post-title">
<h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2> <!-- ชื่อบทความ -->
<div class="post-meta">
<span>Post on <?php the_time('F jS, Y') ?> by <?php the_author_posts_link(); ?> in <?php the_category(', '); ?></span> <!-- รายละเอียดบทความ -->
</div>
</div>
<div class="content"> <!-- บทความ -->
<?php the_post_thumbnail(array(80,80));?> <!--ขนาดรูป 80x80 ใส่รูปที่ feature รองรับ Wordpress 3.0 ขึ้นไป -->
<div class="post">
<?php get_the_content(); ?>
</div>
</div>
<div class="tag"> <!-- tag ที่อยู่ในบทความ -->
</div>
**** เป็นแค่ตัวอย่างนะครับ เพราะแต่ละ Theme มีค่า css ไม่เหมือนกัน เวลาใส่ Div หรือ Span อาจจะแตกต่างกันไป สังเกตพวกที่เป็นคำสั่งใน Wordpress พวก <?php the_title(); ?> หรือ <?php the_post_thumbnail(array(80,80));?> แล้วเอาไปประยุกต์ใช้งานเอง ส่วน <?php get_the_content(); ?> ถ้าอยากได้แบบย่อๆ ให้ใช้ get excerpt แทน