headerをページによって表示、非表示にする
トップページのみヘッダーのjavasprictを使い、他ページでは非表示にしたいのですが、header.phpをもう一つ作り(javaのタグが入ってないもの)別名で保存し、header.phpと同じデレクトリーに保存しページの<?php get_header(); ?>の部分を<?php get_header1(); ?>に変えたのですがエラーでした。
これはどうすれば別々に見る事ができるでしょうか??
今のページ設定は以下になってます。
<?php get_header(); ?>
<div class="span-24" id="contentwrap">
<div class="span-14">
<img src="http://pimpkidz.com/wp/wp-content/uploads/2011/08/side.jpg" />
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<div id="indexthumb"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_post_thumbnail(array( 200,200 ), array( 'class' => 'post_thumbnail' )); ?></a></div>
<div id="indexcontent"> <h2 class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<p class="postdate"><span><?php the_time('Y/n/j(D)') ?> </span></p>
<div class="entry">
<?php echo excerpt(40); ?>
<div class="readmorecontent">
<a class="readmore" href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">Continue</a>
</div>
</div>
</div>
<div style="clear:both;"></div>
</div><!--/post-<?php the_ID(); ?>-->
<hr><?php endwhile; ?>
<?php else :
if ( is_category() ) { // If this is a category archive
printf("<h2 class='pagetitle'>Sorry, but there aren't any posts in the %s category yet.</h2>", single_cat_title('',false));
} else if ( is_date() ) { // If this is a date archive
echo("<h2 class='pagetitle'>Sorry, but there aren't any posts with this date.</h2>");
} else if ( is_author() ) { // If this is a category archive
$userdata = get_userdatabylogin(get_query_var('author_name'));
printf("<h2 class='pagetitle'>Sorry, but there aren't any posts by %s yet.</h2>", $userdata->display_name);
} else {
echo("<h2 class='pagetitle'>No posts found.</h2>");
}
get_search_form();
endif;
?>
</div>
</div>
<?php get_sidebars('right'); ?>
</div>
</div>
<?php get_footer(); ?>
もし他のソースが必要でしたら言ってください。宜しくお願い致します。
補足
回答ありがとうございます 教えられた通りに修正した所▼こうなりました http://10hoho.com/test2/image/hatena003.jpg 上蓋とエントリタイトル、下蓋とパーマリンク欄が窮屈で… entry-contentの白色背景はどうやったら調節できるのか? で詰まってしまいました・・ entry-content欄も窮屈な上、調節すると中の 文章ごと背景色が移動してしまいます 重ね重ね申し訳ありませんが、 どうにかならないものでしょうか・・