アトリエロワ

wpカスタムフィールドに入力した投稿ページのIDの記事を呼び出すWP_Query

カスタムフィールド名前:koumoku
値:3  (例:投稿ページIDを入力しておく)

<?php 
    $field_name = 'koumoku'; // カスタムフィールドの名前
    $value = post_custom( $field_name );
                $args = Array(
                    'post_type' => 'post', // 投稿タイプ
                    'p' => $value, // カスタムフィールドの値(投稿ページID)
                    'posts_per_page' => 1, // 表示件数
        );
$the_query = new WP_Query($args);
if($the_query -> have_posts()):
    while($the_query -> have_posts()): $the_query -> the_post(); ?>

■ここにコンテンツ■

<?php endwhile;
endif;
wp_reset_postdata(); ?>

HOME > wordpress設計術 > wpカスタムフィールドに入力した投稿ページのIDの記事を呼び出すWP_Query

wordpress設計術

wordpress設計術