سلام و ممنون از پاسختون.
ببینید راستشو بخواین، من با توجه به اینکه در کدی که شما ارائه دادید، مشکلی وجود داشت(برخی از کدها با توجه به احتمالا عدم صحت، همراه با عنوان پست ها نمایش داده می شد و علاوه بر این در آن حالت هم کل محتوای پست ها نمایش داده میشد) بخش از اون رو حذف کردم (مثل: " rel="bookmark" title="Permanent Link to).
احتمالا این بخش مد نظر شماست که با این کد در واقع همان نیاز من یعنی نشان دادن فقط عناوین، مرتفع میشه.
لطفا با توجه به کدی زیر که بنده الان دارم ازش استفاده می کنم، نسبت به بررسی و تصحیح کد، مساعدت نمایید.
<span class="current-category">
<?php single_cat_title('مكان فعلي : ', 'display'); ?>
</span>
<?php if (have_posts()) : while (have_posts()) : the_post();
if( $post->ID == $do_not_duplicate ) continue; update_post_caches($posts); ?>
<?php
// check for thumbnail
$thumb = get_post_meta($post->ID, 'Thumbnail', $single = true);
// check for thumbnail class
$thumb_class = get_post_meta($post->ID, 'Thumbnail Class', $single = true);
// check for thumbnail alt text
$thumb_alt = get_post_meta($post->ID, 'Thumbnail Alt', $single = true);
?>
<div class="home-post-wrap2">
<div style="clear: both;"></div>
<div class="single-entry" dir="rtl">
<span class="titles" dir="rtl"><rel="bookmark" title="Permanent Link to"><?php the_title(); ?></span>
<?php // if there's a thumbnail
if($thumb !== '') { ?>
<div class="thumbnail-div">
<title="Permanent Link to"><?php the_title(); ?><img src="<?php bloginfo('stylesheet_directory'); ?>/timthumb.php?src=<?php echo $thumb; ?>&h=90&w=90&zc=1" alt="<?php if($thumb_alt !== '') { echo $thumb_alt; } else { echo the_title(); } ?>" style="border: none;" />
</div>
<?php } // end if statement
// if there's not a thumbnail
else { echo ""; } ?>
<div class="post-info" dir="rtl">ارسال شده توسط : <?php the_author() ?> در بخش : <?php the_category(', ') ?> در تاريخ : <?php the_time('m jS, Y') ?> <span|> <?php comments_number('بدون نظر','يك نظر','نظرها %'); ?></span></div>
<?php the_content(); ?>
<div class="readmore" dir="rtl" style="background:url(<?php bloginfo('stylesheet_directory'); ?>/images/more.gif) no-repeat 42px 0px;height:24px;width:87px;padding-right:20px;padding-top:2px;margin-right:-7px;margin-top:20px" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">ادامه مطلب</div>
</div>
</div>
<?php endwhile; ?>
<div style="clear: both;"></div>
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); }
else { ?>
<p class="pagination"><?php next_posts_link('« Previous Entries') ?> <?php previous_posts_link('Next Entries »') ?></p>
<?php } ?>
<?php else : ?>
<h2 >No Results Found</h2>
<p>Sorry, your search returned zero results. </p>
<?php endif; ?>