MENU

wp_get_archives

この関数は、日付ベースのアーカイブリストを表示します。テンプレートの中にどこでもこのタグを使用することができます。

This function displays a date-based archives list. This tag can be used anywhere within a template.

目次

のテンプレートタグ使用方法

[php]
[/php]

デフォルトの使い方

[php] ‘monthly’,
‘limit’ => ,
‘format’ => ‘html’,
‘before’ => ,
‘after’ => ,
‘show_post_count’ => false,
‘echo’ => 1 ); ?>
[/php]

デフォルトでは、使用を示します:

  • 毎月のアーカイブリンクを表示します
  • すべてのアーカイブ(数では、制限されない)を表示します。
  • HTMLリストの中のアーカイブを表示します。
  • 各リンクの前後に何も表示されません
  • どんな表示にもポストの数のカウントをしません。

By default, the usage shows:

* Monthly archives links displayed
* Displays all archives (not limited in number)
* Displays archives in an

  • HTML list
    * Nothing displayed before or after each link
    * Does not display the count of the number of posts

  • wp_get_archivesのパラメーター

    type

    (string) アーカイブリストを表示するためのタイプです。デフォルトはWordPressの設定です。 有効値:

    • yearly
    • monthly – Default
    • daily
    • weekly
    • postbypost (投稿は投稿日順)
    • alpha (same as postbypost but posts are ordered by post title)

    (string) The type of archive list to display. Defaults to WordPress settings. Valid values:

    * yearly
    * monthly – Default
    * daily
    * weekly
    * postbypost (posts ordered by post date)
    * alpha (same as postbypost but posts are ordered by post title)

    limit

    (integer)アーカイブの数を取得する。デフォルトでは制限はありません。

    (integer) Number of archives to get. Default is no limit.

    format

    (string) アーカイブのリストの形式です。有効な値:

    • html – HTMLリストタグの前後の文字列です。これがデフォルトです。
    • option – セレクト() or dropdown option (
    よかったらシェアしてね!
    • URLをコピーしました!

    この記事を書いた人

    WordPress Love! 休日はほぼWordPress仲間と一緒に勉強会や写真を撮りに行っています。現在育児中のため、オフが多いです(>△<<<)

    コメント

    コメントする

    このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください

    目次