LoginSignup
0
1

More than 5 years have passed since last update.

任意のカスタム投稿タイプの記事一覧を表示させる

Posted at

表示させるには

下記タグを挿入すると月別アーカイブを表示させます。

sidebar.php

<?php
wp_get_archives('type=monthly&post_type=news&show_post_count=true
?>

オプション

オプションは文字列内に&で区切って指定

下記がデフォルト値

'type'            => 'monthly',
'post_type'       => '',
'limit'           => '',
'format'          => 'html', 
'before'          => '',
'after'           => '',
'show_post_count' => false,
'echo'            => 1,
'order'           => 'DESC'

type

出力形式を指定

  • monthly (初期値)
  • daily
  • weekly
  • postbypost (投稿を公開日時の順に)
  • alpha (投稿をタイトルのアルファベット順に)

post_type

カスタム投稿のスラッグを指定

limit

最大表示件数

show_post_count

投稿数を表示させるか否か
(例)2015年4月(4)

order

順番の指定

とりあえずこれくらい抑えておけばなんとなく使えるかなと・・。
詳しくはcodecで。

テンプレートタグ/wp get archives

0
1
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
1