wordpress TOP メモ home.php

<?php get_header(); ?>

<!--▼メインセクション-->
<div id="main_sec" class="main_section_<?php if ( get_option( 'column_position' ) == 0 ) : ?>0<?php endif; ?><?php if ( get_option( 'column_position' ) == 1 ) : ?>1<?php endif; ?>">

<?php dynamic_sidebar('TOPページ・メインエリア'); ?>

<h1 class="m1">見直し実績 2405社 見直しポイント</h1>

<section class="gr3 clearfix">

<div>

<?php
$posts = get_posts(array(
'posts_per_page' => 3, // 表示件数
'category' => 23, // カテゴリIDもしくはスラッグ名
'orderby' => 'desc'
));
?>

<?php if($posts): foreach($posts as $post): setup_postdata($post); ?>

<!--表示する内容が入ります。-->

<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
<p><?php the_time('Y/m/d') ?></p>
<p class="news_img"><?php if(has_post_thumbnail()): ?>
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail('thumbnail'); ?>
</a>
<?php endif; ?>
</p>
<p><?php the_excerpt(); ?></p>
<p><a href="<?php the_permalink() ?>">続きを見る</a></p>
<!--表示する内容ここまで-->


<?php endforeach; endif; ?>

</div>


<div>
<?php
$posts = get_posts(array(
'posts_per_page' => 3, // 表示件数
'category' => 24, // カテゴリIDもしくはスラッグ名
'orderby' => 'desc'
));
?>

<?php if($posts): foreach($posts as $post): setup_postdata($post); ?>

<!--表示する内容が入ります。-->

<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
<p><?php the_time('Y/m/d') ?></p>
<p class="news_img">
<?php if(has_post_thumbnail()): ?>
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail('thumbnail'); ?>
</a>
<?php endif; ?>

</p>
<p><?php the_excerpt(); ?></p>
<p><a href="<?php the_permalink() ?>">続きを見る</a></p>
<!--表示する内容ここまで-->


<?php endforeach; endif; ?>

</div>


<div>
<?php
$posts = get_posts(array(
'posts_per_page' => 3, // 表示件数
'category' => 26, // カテゴリIDもしくはスラッグ名
'orderby' => 'desc'
));
?>

<?php if($posts): foreach($posts as $post): setup_postdata($post); ?>

<!--表示する内容が入ります。-->

<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
<p><?php the_time('Y/m/d') ?></p>
<p class="news_img"><?php if(has_post_thumbnail()): ?>
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail('thumbnail'); ?>
</a>
<?php endif; ?>
</p>
<p><?php the_excerpt(); ?></p>
<p><a href="<?php the_permalink() ?>">続きを見る</a></p>
<!--表示する内容ここまで-->


<?php endforeach; endif; ?>

</div>
</section>


<!-- 喜びの導入例 エリア -->
<h1 class="m1">喜びの導入事例</h1>

<section class="gr3 clearfix">

<div>
<?php
$posts = get_posts(array(
'posts_per_page' => 3, // 表示件数
'category' => 25, // カテゴリIDもしくはスラッグ名
'orderby' => 'desc'
));
?>

<?php if($posts): foreach($posts as $post): setup_postdata($post); ?>

<!--表示する内容が入ります。-->

<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
<p><?php the_time('Y/m/d') ?></p>
<p class="news_img">
<?php if(has_post_thumbnail()): ?>
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail('thumbnail'); ?>
</a>
<?php endif; ?>

</p>
<p><?php the_excerpt(); ?></p>
<p><a href="<?php the_permalink() ?>">続きを見る</a></p>
<!--表示する内容ここまで-->

<?php endforeach; endif; ?>
</div>

<div>
<?php
$posts = get_posts(array(
'posts_per_page' => 3, // 表示件数
'category' => 27, // カテゴリIDもしくはスラッグ名
'orderby' => 'desc'
));
?>

<?php if($posts): foreach($posts as $post): setup_postdata($post); ?>

<!--表示する内容が入ります。-->

<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
<p><?php the_time('Y/m/d') ?></p>
<p class="news_img">
<?php if(has_post_thumbnail()): ?>
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail('thumbnail'); ?>
</a>
<?php endif; ?>

</p>
<p><?php the_excerpt(); ?></p>
<p><a href="<?php the_permalink() ?>">続きを見る</a></p>
<!--表示する内容ここまで-->

<?php endforeach; endif; ?>
</div>

<div>
<?php
$posts = get_posts(array(
'posts_per_page' => 3, // 表示件数
'category' => 28, // カテゴリIDもしくはスラッグ名
'orderby' => 'desc'
));
?>

<?php if($posts): foreach($posts as $post): setup_postdata($post); ?>

<!--表示する内容が入ります。-->

<h3><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h3>
<p><?php the_time('Y/m/d') ?></p>
<p class="news_img">
<?php if(has_post_thumbnail()): ?>
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail('thumbnail'); ?>
</a>
<?php endif; ?>

</p>
<p><?php the_excerpt(); ?></p>
<p><a href="<?php the_permalink() ?>">続きを見る</a></p>
<!--表示する内容ここまで-->

<?php endforeach; endif; ?>
</div>

 

</section>
</div>

<?php get_sidebar(); ?>
<?php get_footer(); ?>