Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ループを使用して特定の投稿をクエリし、その投稿のコンテンツ、タイトル、カスタムフィールドをページに表示することはできますか?
私は次のようなことを考えていました:
if (have_posts() && the_post().id == 66) : while (have_posts()) : the_post();
query_posts()ここで、p = post_id(1)を使用する必要があるようです。
query_posts()
<?php query_posts('p=1'); ?> <?php while (have_posts()) : the_post(); ?> <?php the_title(); ?> <?php the_content(); ?> <?php endwhile; ?>