茨城県水戸市でWordPressを極めたくてしょうがいないホームページ制作のフリーランス、レターズです。
今回はWordpressの基本ループの備忘録です。早速コードをご覧ください。
<?php
// Get the header.
get_header();
// Check if there are any posts to display.
if (have_posts()) {
  // Start the loop.
  while (have_posts()) {
    // Get the current post.
    the_post();
    // Display the post title.
    the_title();
    // Display the post content.
    the_content();
  }
} else {
  // If there are no posts, display a message.
  echo 'Sorry, no posts found.';
}
// Get the footer.
get_footer();
?>| get_header(); | ヘッダーを表示 | 
| the_title(); | タイトルを表示 | 
| the_content(); | コンテンツを表示 | 
