با سلام قالبی هست در حالت نشون دادن پست هاش در صفحه اول (index.php) به صورت خلاصه هستش به طوری که فقط قسمتی از پست رو نشون می ده و عکس ها رو هم نشون نمی ده مشکل از اونجا بدتر می شه که اگر برای برای عکس کاپشِن هم بنویسی کد کاپشِن رو به صورت متن در پست نشون می ده . به این صورت که در این عکس می بینید .
حالا می خوام که حالت خلاصه نویسی رو به حالت نشون دادن کامل متن پست تغییر بدم . می خواستم اگه می شه کمک کنید تا این کار رو بکنم . کد ها فایل Index.php رو اینجا می زارم تا بتونید چک کنیدش :
<?php get_header(); ?>
<div id="entry">
<div class="recent">
<?php $my_query = new WP_Query('showposts=1');
while ($my_query->have_posts()) : $my_query->the_post();
$do_not_duplicate = $post->ID; ?>
<div class="post new" id="post-<?php the_ID(); ?>">
<div class="info">
<div class="latest">
<h3 class="title">جدید ترین نوشته</h3>
<div class="date">نوشته شده در <?php the_time('d M Y'); ?></div>
</div><!--latest-->
<div class="comcount">
<?php comments_popup_link('بدون دیدگاه', 'یک دیدگاه', '% دیدگاه'); ?>
</div><!--comcount-->
<br clear="all" />
</div><!--info-->
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="content"><?php the_content_rss('', TRUE, '', 90); ?><br /><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>" class="readmore">لینک ثابت</a></div>
<div class="meta">
<div class="tags"><?php the_tags('', ', ', '<br />'); ?></div>
<div class="cats"><?php the_category(', ') ?></div>
</div><!--meta-->
</div><!--post-->
<?php endwhile; ?>
</div><!--recent-->
<div class="recentbottom"><!-- --></div>
<?php if (have_posts()) : while (have_posts()) : the_post();
if( $post->ID == $do_not_duplicate ) continue; update_post_caches($posts); ?>
<div class="post recent" id="post-<?php the_ID(); ?>">
<div class="info2">
<div class="latest">
<div class="date">نوشته شده در <?php the_time('d M Y'); ?></div>
</div><!--latest-->
<div class="comcount">
<?php comments_popup_link('بدون دیدگاه', 'یک دیدگاه', '% دیدگاه'); ?>
</div><!--comcount-->
<br clear="all" />
</div><!--info-->
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="content"><?php the_content_rss('', TRUE, '', 40); ?><br /><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>" class="readmore">لینک ثابت</a></div>
<div class="meta">
<div class="tags"><?php the_tags('', ', ', '<br />'); ?></div>
<div class="cats"><?php the_category(', ') ?></div>
</div><!--meta-->
</div><!--post-->
<div class="recentbottom"><!-- --></div>
<?php endwhile; ?>
<div class="alignleft"><?php next_posts_link('نوشته های جدید') ?></div>
<div class="alignright"><?php previous_posts_link('نوشته های قدیمی') ?></div>
<br clear="all" />
<?php else : ?>
<?php endif; ?>
</div><!--entry-->
<div id="angelbg"><!-- --></div>
<?php include (TEMPLATEPATH . '/sidebar.php'); ?>
<?php get_footer(); ?>