• 解決済 hey-c

    (@hey-c)


    いつもお世話になります。

    2年前のこちらの記事を参考にしてみましたがうまくいきません。
    http://ja.forums.wordpress.org/topic/6196?replies=14

    テーマファイルのindex.phpを下記のようにしています。
    twentytwelveをベースにしています。

    <?php get_header(); ?>
    
    <?php if ( have_posts() ) : ?>
    
    <?php if ( is_home() ) : ?>
    
    <?php $cnt = 0; ?>
    
    <?php while ( have_posts() ) : the_post(); ?>
    
    <?php if($paged == 1 && $cnt < 4 ) : ?>
    
    <?php // n件目までここから ?>
                <div class="date"><?php the_time("Y.m.d"); ?></div><!-- .date -->
    			<h2 class="asset-name entry-title">
    				<a href="<?php the_permalink(); ?>"); ?>" rel="bookmark"><?php the_title(); ?></a>
    			</h2>
    		<div class="entry-content">
    			<?php the_content(); ?>
    		</div><!-- .entry-content -->
    
    	</article><!-- #post -->
    </div><!-- /entry entry-asset asset hentry -->
    
    <?php // n件目までここまで ?>
    
    <hr class="divider" />
    
    <?php else: ?>
    <?php // n件目以降ここから ?>
    
    <div class="entry2">
    <div class="date2"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_time("Y.m.d"); ?></a></div>
    <h2 class="title2"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
    </div>
    
    <?php // n件目以降ここまで ?>
    <?php endif; ?>
    
    <?php $cnt++; ?>
    <?php endwhile; ?>
    <?php endif; ?>
    
    <!-- 以下はアーカイブ等用にcontentを呼び出し -->
    <?php else : ?>
    
    			<?php /* Start the Loop */ ?>
    			<?php while ( have_posts() ) : the_post(); ?>
    				<?php get_template_part( 'content', get_post_format() ); ?>
    			<?php endwhile; ?>
    
    <?php endif; // end have_posts() check ?>
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    現状、4件目以降のデザインが全てに適応されてしまっています。
    どこがまずいのか、教えて頂けると嬉しいですm(_ _)m

3件の返信を表示中 - 1 - 3件目 (全3件中)
  • トピック投稿者 hey-c

    (@hey-c)

    最初の
    <?php // n件目までここから ?>
    の中のパーマリンク閉じタグは修正しております。

    トピック投稿者 hey-c

    (@hey-c)

    すみません、twitterで助言をいただきまして上記の

    <?php if($paged == 1 && $cnt < 4 ) : ?>

    <?php if($cnt < 4) : ?>

    にしたらうまくいきました。

    トピック投稿者 hey-c

    (@hey-c)

    ありがとうございました。

3件の返信を表示中 - 1 - 3件目 (全3件中)
  • トピック「トップページで、記事の○件目以降はデザインを変えたい」には新たに返信することはできません。