News
-
[insert_php]
- [insert_php] the_time(‘Y年n月j日’); [/insert_php]
-
[insert_php] the_title(); [/insert_php]
$newslist = get_posts( array(
‘category_name’ => ‘news’, //特定のカテゴリースラッグを指定
//’tag’ => ‘slug’, //特定のタグスラッグを指定
//’post_type’ => ‘slug’, //特定のカスタム投稿タイプスラッグを指定
//’taxonomy’ =>’slug’, //特定のカスタムタクソノミースラッグを指定
//’term’ =>’slug’, //特定のカスタムタクソノミー内のタームスラッグを指定
//’terms’ => array( ‘slug1’, ‘slug2’ ), //特定のカスタムタクソノミー内のタームスラッグを複数指定
‘posts_per_page’ => 5 //取得記事件数
));
foreach( $newslist as $post ):
setup_postdata( $post );
[/insert_php]
[insert_php]
endforeach;
wp_reset_postdata();
[/insert_php]