アトリエロワ

Custom Post Type UIで、特定のカテゴリー一覧を取得する方法

任意のページでループする方法

<?php
// ページ数
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;

// カスタム投稿タイプ「plan」、カスタムタクソノミー「planarea」、ターム「futarasanplan」、新着4件取得
query_posts( array(
	'post_type' => 'plan',
	'taxonomy' => 'planarea',
	'term' => 'futarasanplan',
	'posts_per_page' => 4,
	'paged' => $paged,
	'order' => 'DESC'
	) 
);
if (have_posts()) :while (have_posts()) : 
	the_post();
?>
            ●●ここに表示したい内容●●
            <?php endwhile; endif; ?>
            <?php wp_reset_query();?>
name: plan
'post_type' => '●●投稿タイプ●●',

投稿タイプ
'post_type' => '●●タクソノミー●●',


'term' => '●●出したいカテゴリーのスラッグ(ローマ字)●●',

HOME > wordpress設計術 > Custom Post Type UIで、特定のカテゴリー一覧を取得する方法

wordpress設計術

wordpress設計術