Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPBカップ
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

何ですか: ループ

編集メモ: WPBeginner のパートナーリンクから手数料を得ています。手数料は編集者の意見や評価に影響を与えません。編集プロセスについて詳しく知る。

ループ」は一般的に「WordPressループ」とも呼ばれ、単に「ループ」とも呼ばれます。これは、WordPressサイトの投稿を表示するPHPコードの重要な部分です。

WordPressのループは、WordPressのコードの中で最も重要な部分の一つであり、何らかの形でほとんどのクエリーの中核をなしていると言っても過言ではありません。

What Is a Loop in WordPress?

インフォグラフィックWordPressループを理解する

ループは、WordPressテーマで投稿のリストをウェブページに表示するために使用されます。

テーマ開発者は、ループ内の各投稿がどのように表示されるかをカスタマイズするために、テンプレートタグを使用して出力をフォーマットすることができます。いくつかのテンプレートタグはWordPressのループ内部でのみ動作し、投稿データをフォーマット、アレンジ、公開するために使用されます。

初心者のためのWordPressループのインフォグラフィックを作成しました。

Infographic - Understanding the WordPress Loop

コード例:WordPressのシンプルなループ

一例をご覧いただきたい。

以下は、WordPressのシンプルなループを形成するためのPHPコードです:

<?php
 
// checks if there are any posts that match the query
if (have_posts()) :
 
  // If there are posts matching the query then start the loop
  while ( have_posts() ) : the_post();
 
    // the code between the while loop will be repeated for each post
    ?>
 
    <h2 id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
 
    <p class="date-author">Posted: <?php the_date(); ?> by <?php the_author(); ?></p>
 
    <?php the_content(); ?>
 
    <p class="postmetadata">Filed in: <?php the_category(); ?> | Tagged: <?php the_tags(); ?> | <a href="<?php comments_link(); ?>" title="Leave a comment">Comments</a></p>
 
    <?php
 
    // Stop the loop when all posts are displayed
 endwhile;
 
// If no posts were found
else :
?>
<p>Sorry no posts matched your criteria.</p>
<?php
endif;
?>

この投稿がWordPressのループについてより深く知っていただく一助となれば幸いです。また、WordPress の便利なヒントやトリック、アイデアに関する関連投稿については、以下の「追加読み物」リストをご覧ください。

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

追加リーディング

Avatar

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

究極のWordPressツールキット

ツールキットへの無料アクセス - すべてのプロフェッショナルが持つべきWordPress関連製品とリソースのコレクション!