投稿ページのakutagawaのタイトルと本文を表示する
<?php
$the_query = new WP_Query(array('name' => 'akutagawa'));
$the_query->the_post();
?>
<div style="margin-top: 8px; margin-bottom: 3px; font-size: 25px;">
<?php echo the_title();?></div>
<?php echo the_content();?>
固定ページのthirdのタイトルと本文を表示する
<?php
$my_quy = new WP_Query(array('post_type' =>'page', 'name' => 'third'));
$my_quy->the_post();
?>
<div style="margin-top: 8px; margin-bottom: 3px; font-size: 25px; text-align:left; padding: 15px;">
<?php echo the_title();?></div>
<?php echo the_content();?>
<?php wp_reset_postdata(); // クエリをリセット ?>
カテゴリ ID 1 の記事を 5 件欲しかったら
<?php
$args = array(
'cat' => 1,
'posts_per_page' => 5
);
$the_query = new WP_Query( $args );
if ( $the_query->have_posts() ) :
while ( $the_query->have_posts() ) : $the_query->the_post();
endwhile;
//ここにループするテンプレート
endif;
wp_reset_postdata();
?>
コメントを残す