سلام. من قالب dailypress نصب کردم که این قالب تصاویر بندانگشتی نداشت.با اضافه کردن کدهای لازم، تصویر بندانگشتی به سایتم اضافه شد. ولی یه مشکل هست: اگه متن یک مطلب کم باشه ، تیتر مطلب بعدی میاد کنار تصویر شاخص مطلب قبلی!
کد حلقه مطالب:
<?php if (have_posts()) : while (have_posts()) : the_post();
if( $post->ID == $do_not_duplicate ) continue; update_post_caches($posts); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="لینک به <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<p class="postinfo"><span class="upper"><?php the_time('M j, Y') ?></span> <span class="category"><?php the_category(', ') ?></span> <span class="comment"><?php comments_popup_link('نظر بدهید', '1 نظر', '% نظر'); ?><?php edit_post_link('ویرایش', ' | ', ''); ?></span></p>
<p>
<img align="right" width="200" height="160" <?php the_post_thumbnail(); ?>
<?php the_content(); ?>
</p>
</div>
<h2 class="sectionhead"></h2>
<?php endwhile; endif; ?>