wordpress 投稿記事 一番上

<?php
$sticky = get_option( 'sticky_posts' );
$args = array(
	'posts_per_page' => 1,
	'post__in'  => $sticky,
	'post_type' => 'post',
	'ignore_sticky_posts' => 1,
);
$query = new WP_Query($args)
?>
<?php if ( isset($sticky[0]) ): ?>
<?php $query->the_post(); ?>
<h2>キャンペーンのお知らせ</h2>
<section>
	<p><a href="<?php the_permalink(); ?>"><?php the_title(); ?>1</a></p>
	<?php the_content(); ?>
</section>
<?php endif; wp_reset_postdata(); ?>

<h2>ブログ(トップ表示のキャンペーンのお知らせ以外)</h2>
<?php
$sticky = get_option( 'sticky_posts' );
$args = array(
	'posts_per_page' => 10,
	'order' => 'DESC',
	'post__not_in' => $sticky,
	'post_type' => 'post',
);
$query = new WP_Query($args)
?>
<?php if($query->have_posts()): while ($query->have_posts() ): $query->the_post(); ?>
<section>
	<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
</section>
<?php endwhile; else:?>
<p>表示する記事はありませんでした。</p>
<?php endif; wp_reset_postdata(); ?>
PAGE TOP