主要是因为博主在iframe一个flash(http://doufu.ru/iradio)的时候发现左边的content内容部分宽度不够,然后三下五除二从默认页面模板改出一个无边栏页面模版,得益于minty代码层次感,博主不用乱找了。

直接把下面的代码保存为

<?php  
/*
Template Name: No Sidebar 
*/ 
?>  

<?php get_header(); ?>  

    <div id="main-nosidebar" class="hfeed"role="main"itemscope itemtype="http://schema.org/ItemPage">  

    <?phpwhile( have_posts() ) : the_post(); ?>  

        <article id="post-<?php the_ID(); ?>"<?php post_class(); ?>>  
            <headerclass="entry-header">  
                <h1class="entry-title"itemprop="name headline"><?php the_title(); ?></h1>  
            </header>  

            <divclass="entry-content"itemprop="articleBody">  
                <?php the_content(); ?>  
                <?php wp_link_pages(array( 'before' => '<divclass="page-links"><spanclass="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>  
            </div>  
        </article>  

        <?php get_template_part( 'ad', 'single' ); ?>  
        <?php comments_template(); ?>  

    <?phpendwhile; ?>  

    </div>  
<?php get_footer(); ?> 

然后新建页面的时候模板选No Sidebar即可。