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 5 years have passed since last update.

WordPress本文を表示させる

Last updated at Posted at 2019-12-03

◆single.phpで投稿された記事を表示させる。

<?php get_header(); ?>
 <h1><?php the_title(); ?></h1>
 <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
 <?php the_content(); ?>
 <?php endwhile; endif; ?>
</div>
<?php get_footer();?>

◆Single.phpが表示されない・・・
 設定→パーマリンク設定→カスタム構造で
/%postname% に設定する

◆記事の数の上限を指定する。 page=表示したい数

◆日付の表示の仕方

y,m,dの記述の仕方により、表示の仕方が異なる。
詳細

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?