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.
特定の投稿を番号で呼び出して、テンプレートの特定の場所に注目の投稿として配置するにはどうすればよいですか? sticky posts について読んだことがありますが、おすすめの投稿を配置する場所が約 3 つあり、定義した番号で投稿を取得するにはループが必要だと思います。
何か助けて?!
<?php // The Query $query = new WP_Query( 'p=7' ); // The Loop while ( $the_query->have_posts() ) : $the_query->the_post(); echo '<li>'; the_title(); echo '</li>'; endwhile; // Reset Post Data wp_reset_postdata(); ?>