WordPress 테마를 만드는 방법

1314 단어 WordPress

WordPress





index.php
<?php get_header(); ?>

<main>

<p>ここに動かしたいプログラムを書く</p>

</main>

<?php get_footer(); ?>

index.php
<?php
  if(have_posts()):
    // 記事を繰り返し表示するプログラムをここに記述します
  else:
  ?>
  <div class="post">
    <h2>記事はありません</h2>
    <p>お探しの記事はありませんでした</p>
  </div>
<?php
  endif;
?>

좋은 웹페이지 즐겨찾기