워드프레스 테마 템플릿 수정

지금 agazine 이라는 테마를 사서 사용중인데 모든 템플릿이 2단 이상으로 밖에 안되있어서요

저는 홈에서는 2단구성 그대로 가고 다른 메뉴에서는 1단 구성으로 옆에 사이드바를 없애고 싶은데 어떻게 하면 가능하죠??

 

<?php
/*
Template Name: Archives
*/
?>
<?php global $bpxl_goblog_options; ?>
<?php get_header(); ?>

<div class="main-wrapper">
    <div id="page">
<div class="main-content">
    <div class="content-area">
        <div class="content-page content-blog">
            <div class="page-content archive-temp">
                <?php if (have_posts()) : while (have_posts()) : the_post(); ?>        
                    <header>
                        <h1 class="title section-heading"><span><?php the_title(); ?><span></h1>
                    </header>
                    <article <?php post_class(); ?> id="post-<?php the_ID(); ?>">
                        <div class="single-page-content">
                            <?php the_content(); ?>
                            <div class="archive-template-content">
                                <div class="archive-col">
                                    <h3 class="widget-title uppercase"><?php _e('Recent Posts','bloompixel'); ?></h3>
                                    <ul>
                                        <?php wp_get_archives( array( 'type' => 'postbypost', 'limit' => 20, 'format' => 'html' ) ); ?>
                                    </ul>
                                </div>
                                <div class="archive-col">
                                    <h3 class="widget-title uppercase"><?php _e('Archives by Categories','bloompixel'); ?></h3>
                                    <ul>
                                        <?php wp_list_categories('title_li='); ?>
                                    </ul>
                                </div>
                                <div class="archive-col">
                                    <h3 class="widget-title uppercase"><?php _e('Archives by Month','bloompixel'); ?></h3>
                                    <ul>
                                        <?php wp_get_archives( array( 'type' => 'monthly', 'limit' => 12 ) ); ?>
                                    </ul>
                                </div>
                                <div class="archive-col">
                                    <h3 class="widget-title uppercase"><?php _e('Archives by Year','bloompixel'); ?></h3>
                                    <ul>
                                        <?php wp_get_archives( array( 'type' => 'yearly', 'limit' => 12 ) ); ?>
                                    </ul>
                                </div>
                                <div class="archive-col">
                                    <h3 class="widget-title uppercase"><?php _e('Archives by Tags','bloompixel'); ?></h3>
                                    <ul>
                                    <?php
                                        $tags = get_tags( array('orderby' => 'count', 'order' => 'DESC') );
                                        foreach ( (array) $tags as $tag ) {
                                        echo '<li><a href="' . get_tag_link ($tag->term_id) . '" rel="tag">' . $tag->name . '</a></li>';
                                        }
                                    ?>
                                    </ul>
                                </div>
                                <div class="archive-col">
                                    <h3 class="widget-title uppercase"><?php _e('Authors','bloompixel'); ?></h3>
                                    <ul>
                                        <?php wp_list_authors(); ?>
                                    </ul>
                                </div>
                            </div><!--.archive-template-content-->
                        </div>
                    </article>
                    <?php endwhile; ?>
                    <?php else : ?>
                        <h3 class="page-title"><?php _e('Not found', 'bloompixel'); ?></h3>
                        <p class="sorry"><?php _e('"Sorry, but you are looking for something that is not here. Try something else.', 'bloompixel'); ?></p>
                <?php endif; ?>
            </div><!--.page-content-->
        </div>
        <?php
            $bpxl_layout_array = array(
                'csb_layout',
                'bcs_layout',
                'bsc_layout',
                'sbc_layout',
                'scb_layout',
            );
        ?>
        <?php if(in_array($bpxl_agazine_options['bpxl_layout'],$bpxl_layout_array)) { ?>
            <div class="sidebar-small sidebar">
                <div class="small-sidebar">
                    <?php
                        if ( !function_exists( 'dynamic_sidebar' ) || !dynamic_sidebar('Secondary Sidebar') );
                    ?>
                </div><!--End .small-sidebar-->
            </div><!--End .sidebar-small-->
        <?php } ?>
    </div><!--content-area-->
    <?php get_sidebar(); ?>
</div><!--.main-->
<?php get_footer(); ?> 

이 템플릿이 안쓰는 템플릿이라 이거를 수정해서 쓰면 될것같은데 잘 모르겠습니다.ㅠㅠ 제가 또 CSS에 대해 아는게 하나도 없어서,,,, 

워드프레스 에러 기술지원 서비스 전문가에게 맡기세요
좋은 정보와 인맥을 동시에, 워드프레스 사용자 단톡방 참여하기
좋은 정보와 인맥을 동시에, 워드프레스 사용자 단톡방 참여하기