سلام وقت همه شما بخیر
سایت من صفحه اولش یه برگه هست و فریم فراخوانی کردم ولی متاسفانه قالبم full width رو برای برگه ها نداره خودم تلاش کردم بسازم براش اما فقط تا مرحله حذف ساید بار پیش رفتم دیگه نتونستم عریضترش کنم
این عکس قالبه
http://s6.picofile.com/file/8240275818/ax_zolal.jpg
دیگه شما استادید ببنید چطوری من اونی که میخوام درست بشه فقط صفحه اصلیش
اینم Page,php
<?php get_header(); ?>
<?php include( TEMPLATEPATH . '/includes/get_options.php' ); ?>
<div id="content">
<?php if ($gazpo_s_social_posts_show == 'Yes') { ?>
<div class="s_socialbar" id="s_socialbar">
<ul>
<?php s_socialbar_button($gazpo_s_socialbar_btn1); ?>
<?php s_socialbar_button($gazpo_s_socialbar_btn2); ?>
<?php s_socialbar_button($gazpo_s_socialbar_btn3); ?>
<?php s_socialbar_button($gazpo_s_socialbar_btn4); ?>
<?php s_socialbar_button($gazpo_s_socialbar_btn5); ?>
</ul>
</div>
<?php } ?>
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<div class="postmeta">
<span class="by">ارسال شده توسط <?php the_author_posts_link();?> در تاريخ <?php the_date(); ?> در</span>
<span class="category"><?php the_category(', '); ?></span>
<span class="comments"><?php comments_popup_link('بدون دیدگاه','1 دیدگاه','% دیدگاه'); ?></span>
</div>
<div class="entry">
<?php the_content(); ?>
<h2>مطالب مرتبط</h2>
<?php
$related = get_posts( array( 'category__in' => wp_get_post_categories($post->ID), 'numberposts' => 4, 'post__not_in' => array($post->ID) ) );
if( $related ) foreach( $related as $post ) {
setup_postdata($post); ?>
<ul>
<div id="parscode">
<li>
</a>
<h2><a target="_blank" href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
</li>
</div>
</ul>
<?php }
wp_reset_postdata(); ?>
</div>
<div id="comments">
<?php comments_template('', true); ?>
</div>
</div>
<?php endwhile; ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>