0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

WordPressのテーマの作り方

Posted at

###WordPress
スクリーンショット 2020-11-03 8.36.39.png

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;
?>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?