지금 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에 대해 아는게 하나도 없어서,,,,
음 답변을 드리고 싶지만 해당 레이어 코드만으로 어찌 답변을 드리는게 불가능하군요..
사이드바는 <?php get_sidebar(); ?> 이걸 지워보세요;;
페이지 주소라도 알려주시면 아주 살짝이라도 더 도움이 되겠군요.
기본으로 제공된 사이드바 없는 템플릿을 선택하시는게 여러가지로 편리하실 겁니다.