سلام دوستان
صفحه اول سایتم وقتی مطلب رو نشر میدم به صورت کنار هم نشان میدهد و رنگ و لینک رو هم نشان نمیده ولی وقتی به ادامه مطلب میرم درست و صحیح نشان میده مشکل از کجاست ؟
آیا باید افزونه نصب کنم ؟
عکس گرفتم از این مشکل
عکس شماره یک
عکس شماره دو
میخوام صفحه اول هم مثل ادامه مطلب عکس و رنگ و تیپ مطالب رو حفظ کنه نه اینکه به صورت خلاصه به هم بچسبونشون
با تشکر
اینم کد index.php
<?php get_header() ?>
<?php include('sidebar-left.php') ?>
<div id="content">
<?php while ( have_posts() ) : the_post() ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if(function_exists('get_the_image'))
{ get_the_image( array( 'default_size' => 'thumbnail', 'image_class' => 'thumb', 'image_scan' => 'true', 'the_post_thumbnail' => 'true', 'link_to_post' => 'true' ) ); } ?>
<h2 class="post-title"><a href="<?php the_permalink() ?>" title="<?php the_title() ?>" rel="bookmark"><?php the_title() ?></a></h2>
<div class="post-meta">ارسال شده در تاریخ <?php the_time('F j, Y'); ?> در موضوع <?php the_category(', '); ?><span class="sep">|</span><?php comments_popup_link('بدون دیدگاه', '1 دیدگاه', '% دیدگاه') ?></div>
<div class="post-content">
<?php the_excerpt(); ?>
</div>
<div class="redmore"> <a href="<?php the_permalink() ?>">ادامه مطلب</a> </div>
<?php the_tags('<div class="tags"><b>برچسبها :</b> ', ', ', ' </div>'); ?></a>
</div><!-- .post -->
<?php endwhile ?>
<div class="navigation">
<div class="navleft"><?php next_posts_link('« مطالب قدیمی تر', '0') ?></div>
<div class="navright"><?php previous_posts_link('مطالب جدیدتر »', '0') ?></div>
</div>
</div>
<?php include('sidebar-right.php') ?>
<?php get_footer() ?>