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でオリジナルテーマを作ろう #7: 記事一覧ページの作成

Last updated at Posted at 2020-07-16

wordpress.png

前回の続きです。

####ループの利用

投稿した記事の一覧を表示するために、index.phpにコードを追加します。

index.php
<?php get_header(); ?>
<div class="container">
    <div class="contents">
        <?php if(have_posts()): while(have_posts()): the_post(); ?> //追記
        <?php endwhile; endif; ?> //追記
    </div>
    <?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>

次に、作業中のディレクトリ内にloop-content.phpを作成します。

loop-content.php
<article <?php post_class( 'article-list' ); ?>>
    <a href="<?php the_permalink(); ?>">
        <div class="img-wrap">
            <!--サムネイル-->
            <?php if( has_post_thumbnail() ): ?>
                <?php the_post_thumbnail('medium'); ?>
            <?php else: ?>
                <img src="<?php echo get_template_directory_uri(); ?>/images/no-image.gif" alt="no-img"/>
            <?php endif; ?>
            <!--カテゴリ-->
            <?php if (!is_category() && has_category()): ?>
                <span class="cat-data">
                <?php
                    $postcat = get_the_category();
                    echo $postcat[0]->name;
                ?>
                </span>
            <?php endif; ?>
        </div>
        <div class="text">
            <!--タイトル-->
            <h2><?php the_title(); ?></h2>

            <!--投稿日-->
            <span class="article-date">
                <i class="far fa-clock"></i>
                <time datetime="<?php echo get_the_date( 'Y-m-d' ); ?>">
                    <?php echo get_the_date(); ?>
                </time>
            </span>
            <!--筆者-->
            <span class="article-author">
                <i class="fas fa-user"></i><?php the_author(); ?>
            </span>
            <!--抜粋-->
            <?php the_excerpt(); ?>
        </div>
    </a>
</article>

サムネイルを表示するために、作業中のディレクトリにimagesディレクトリを作成し、画像を追加しておきます。(画像は好きなものを用意してください)

最後にloop-content.phpを呼び出すためのコードをindex.phpに追加します。

index.php
<?php get_header(); ?>
<div class="container">
    <div class="contents">
        <?php if(have_posts()): while(have_posts()): the_post(); ?>
            <?php get_template_part('loop-content'); ?> //追記
        <?php endwhile; endif; ?>
    </div>
    <?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>

ブラウザを確認します。

img1.png

上の画面のように表示されれば記事一覧ページの表示は完了です。

ここからCSSでデザインを整えていきます。

####デザインの調整

まずはレイアウト確認用に記述した部分を削除します。

style.css
.contents {
  height: 800px;
}
.container {
  background-color: #fcffa5;
}
.contents {
  background-color: #ffd1a5;
}

style.cssに以下のコードを記述します。

style.css
.article-list {
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid #ddd;
}

.article-list:hover {
  background-color: #eee;
}

.article-list a {
  display: block;
  text-decoration: none;
  color: #333;
}

.article-list a:after {
  display: block;
  clear: both;
  content: '';
}

.article-list .img-wrap {
  position: relative;
  float: left;
  line-height: 1;
}

.article-list .img-wrap img {
  width: 240px;
  height: 160px;
  object-fit: cover;
}

.article-list .img-wrap .cat-data {
  font-size: .75rem;
  position: absolute;
  top: 0;
  right: 0;
  padding: .3rem .5rem;
  color: #fff;
  background-color: #03162f;
}

.article-list .text {
  margin-left: 260px;
}

.article-list .text h2 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
}

.article-list .text .article-date,
.article-list .text .article-author {
  font-size: .75rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: .5rem;
  color: #888;
}

.article-list .text .article-date {
  margin-right: .5rem;
}

.article-list .text .article-author i {
  margin-right: .3rem;
}

.article-list .text p {
  font-size: .8125rem;
  line-height: 1.7;
}

ブラウザを更新します。(更新しても変化がない場合は、デベロッパーツールを開いた状態でリロードボタンを右クリックし、「キャッシュの消去とハード再読み込み」をクリックしてください)

img2.png

次にスマートフォン用のデザインを記述します。

style.css
//@media(max-width: 600px)内に追記
.article-list {
  padding: .5rem;
}

.article-list .img-wrap img {
  width: 132px;
  height: 88px;
}

.article-list .img-wrap .cat-data {
  font-size: .6rem;
}

.article-list .text {
  margin-left: 140px;
  padding: 0;
}

.article-list .text h2 {
  font-size: 1rem;
  margin-bottom: 0;
}

.article-list .text p {
  display: none;
}

.article-list .text .article-date,
.article-list .text .article-author {
  font-size: .625rem;
  margin-bottom: 0;
}

.article-list .text .article-date {
  margin-right: .2rem;
}

ブラウザの幅を調節してレスポンシブ対応になっているかどうか確認してみてください。

####ページネーション

すべての記事を見ることができるようにページネーションを挿入します。

index.phpにコードを追加します。

index.php
<?php get_header(); ?>
<div class="container">
    <div class="contents">
        <?php if(have_posts()): while(have_posts()): the_post(); ?>
            <?php get_template_part('loop-content'); ?>
        <?php endwhile; endif; ?>
        //ここから
        <div class="pagination">
            <?php echo paginate_links( array(
                'type' => 'list',
                'mid_size' => '1',
                'prev_text' => '<i class="fas fa-angle-left"></i>',
                'next_text' => '<i class="fas fa-angle-right"></i>'
            ) ); ?>
        </div>
        //ここまで
    </div>
    <?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>

ブラウザを更新します。

img3.png

赤枠のところにページネーションが表示されました。

次にCSSでデザインを整えます。

style.css
.pagination {
  margin: 2rem 0;
  text-align: center;
}

.pagination ul {
  font-size: 0;
}

.pagination ul li {
  font-size: 1rem;
  display: inline-block;
  margin-right: .5rem;
}

.pagination ul li:last-child {
  border: 0;
}

.pagination ul li a,
.pagination .current {
  display: block;
  padding: .5rem .8rem;
  border: 1px solid #ccc;
}

.pagination ul li .prev,
.pagination ul li .next {
  border: 0;
}

.pagination ul li a {
  text-decoration: none;
  color: #333;
}

.pagination ul li a:hover {
  opacity: .6;
}

.pagination .current {
  color: #fff;
  background-color: #03162f;
}

img4.png

以上で記事一覧ページの作成は完了です。

次回は記事を個別に表示できるようにします。

WordPressでオリジナルテーマを作ろう #8: 投稿ページと固定ページの作成

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?