Alıntı
<?php get_header(); ?>

<div class="page">
<?php get_sidebar(); ?>

<!-- start content -->
<div id="content">
<?php if (have_posts()) : ?>

<?php while (have_posts()) : the_post(); ?>


<div class="item" onmouseover="this.className='item2'" onmouseout="this.className='item'">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(__('Read more'));?>

<div class="clear"></div>
<?php if(function_exists('the_ratings')) { the_ratings(); } ?>
</div><!-- Item Div -->
<?php endwhile; ?>
<div class="clear"></div>

<div class="Nav"><?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?></div>
<?php endif; ?>

</div><!-- End CONTENT Div -->

<div class="clear"><!-- --></div>
</div><!-- End PAGE Div -->
<?php get_footer(); ?>
index.php de post biçimlendirme yapacaksın. single.php'de de. Tema zaten fotogaleri için hazırlandığı için text içermemesi doğal. index.php yi yukarıdaki gibi yap o zaman tam yazıyı görürsün. Çerçeveleri kaldırabilirsin. ben normalde temada olmayan
Alıntı
<?php the_content(__('Read more'));?>
ekledim.