• 解決済 wideplain

    (@wideplain)


    お世話になります。

    ヘッダーにおすすめ記事を入れようと

    <?php if(is_home()): ?>
    <?php $myquery_pickup= array(
        'posts_per_page' =>1,
       'ignore_sticky_posts' =>1,
      'post__in' => get_option('sticky_posts')
     ); ?>
    <?php query_posts($myquery_pickup); ?>
    <?php if(have_posts()): while(have_posts()):
    the_post(); ?>
    <?php get_template_part('content','excerpt'); ?>
    <?php endwhile; endif; ?>
    <?php endif; ?>
    </div>

    のコードをheader.phpに入力したのですが、このコード以下のテンプレートが崩れてしまいます。
    ちなみにこのようになります↓
    https://dl.dropbox.com/u/44515824/%E8%AA%AC%E6%98%8E.png
    ヘッダー画像を追加しようとしても同じ症状が起こります。

    何が原因なのかよくわからなかったため、フォーラムに投稿させていただきました。
    ご教授よろしくお願いします。

    ちなみにheader.php全体のコードは次のようになっています。

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="<?php bloginfo ('charset'); ?>"/>
    <title><?php bloginfo('name'); ?><?php wp_title();?></title>
    <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" />
    
    <?php wp_head(); ?>
    </head>
    
    <script type="text/javascript">
    
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'UA-32803416-1']);
      _gaq.push(['_trackPageview']);
    
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
      })();
    
    </script>
    
    <body <?php body_class(); ?>>
    
    <!-- コンテナ -->
    <div id="container">
    
    <!-- ヘッダー -->
    <div id="header">
    <h1><a href="<?php echo home_url(); ?>"><img src="<?php bloginfo('template_url'); ?>/smasokuβ.png" wideth="456" height="137"
    <?php bloginfo('name'); ?></a></h1>
    
    <div id="subinfo">
    
    <a href="http://twitter.com/#!/androwide"><img src="<?php bloginfo('template_url'); ?>/twitter.png"
    wideth="30" height="30" /></a>
    <a href="http://www.facebook.com/pages/%E3%81%B2%E3%82%8D%E3%81%B3%E3%82%8D%E3%81%82%E3%82%93%E3%81%A9%E3%82%8D%E3%81%84%E3%81%A9/421192667898277"><img src="<?php bloginfo('template_url'); ?>/facebook.png"
    wideth="30" height="30" /></a>
    <a href="<?php bloginfo('rss2_url'); ?>">
    <img src="<?php bloginfo('template_url'); ?>/rss.png"
    alt="RSS FEED" wideth="30" height="30" /></a>
    <a href="mailto:contact@androwide.info"><img src="<?php bloginfo('template_url'); ?>/gmail.png"
    wideth="30" height="30" /></a>
    </div>
    </div>
    
    <div id="nav">
    <?php wp_nav_menu(array(
    'theme_location' => 'navigation'
    )); ?>
    </div>
    <tr>
    <?php if(get_header_image()): ?>
    <div id="image"><img src="<?php header_image(); ?>"
    alt"*" width="<?php echo HEADER_IMAGE_WIDTH; ?>"
    height="<?php echo HEADER_IMAGE_HEIGHT; ?>" /></div>
    <?php endif; ?>
    </div></tr>
    
    <Div Align="center">
    アドセンス
    </div>

  • トピック「ヘッダー画像のタグ等をheader.phpに書くとレイアウトが崩れる」には新たに返信することはできません。