이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

Expanding Archives

설명

Expanding Archives adds a widget that shows your old posts in an expandable/collapsible format. Each post is categorized under its year and month, so you can expand all the posts in a given month and year.

This plugin comes with very minimal CSS styling so you can easily customize it to match your design.

JavaScript is required. No IE support.

스크린샷

  • The widget on my blog. This version has custom CSS applied.
  • The widget on the Twenty Fifteen theme, with only the default styles applied.
  • No widget settings – just add and save!

설치

  1. Upload expanding-archives to the /wp-content/plugins/ directory
  2. WordPress의 ‘플러그인’ 메뉴에서 플러그인을 활성화하세요.
  3. Go to Appearance -> Widgets and drag the Expanding Archives widget into your sidebar.

FAQ

How can I change the appearance of the widget?

The plugin does not come with a settings panel so you have to do this with your own custom CSS. Here are a few examples:

Change the year background colour:

.expanding-archives-title {
    background: #000000;
}

Change the year font colour:

.expanding-archives-title a {
    color: #ffffff;
}

How can I limit the results to a specific category?

By default, the widget includes posts in all categories. You can add the following code to a custom plugin or a child theme’s functions.php file to limit the results to posts in a specific category:

add_filter('expanding_archives_get_posts', function(array $args) {
     $args['cat'] = 2; // Replace with ID of your category.

     return $args;
 });

 add_filter('expanding_archives_query', function(string $query) {
     $category = get_category(2); // Replace with ID of your category.
     if (! $category instanceof \WP_Term) {
         return $query;
     }

     global $wpdb;

     return "
 SELECT DISTINCT MONTH(post_date) AS month, YEAR(post_date) AS year, COUNT(id) as post_count
 FROM {$wpdb->posts}
          INNER JOIN {$wpdb->term_relationships} ON ({$wpdb->posts}.ID = {$wpdb->term_relationships}.object_id AND {$wpdb->term_relationships}.term_taxonomy_id = 2)
 WHERE post_status = 'publish'
   AND post_date <= now()
   AND post_type = 'post'
 GROUP BY month, year
 ORDER BY post_date DESC
     ";
 });

Be sure to set the ID of your category in both of the designated places (the examples use ID 2).

Note that the results may not update instantly, as the query to retrieve the date periods is cached for one day. To force the query to re-run, delete this transient: expanding_archives_months

How can I specify a cut-off date?

By default, the widget will show a list of every year you’ve published posts.

If you have a lot of posts, you may wish to only show results from the last few years. This can be done with the following code snippet:

add_filter('expanding-archives/earliest-date', fn() => '-4 years');

You can change -4 years to any value supported by the PHP DateTime constructor. This can be a relative value (as shown above), or a specific date like:

add_filter('expanding-archives/earliest-date', fn() => '2023-01-01');

Note that the results may not update instantly, as the query to retrieve the date periods is cached for one day. To force the query to re-run, delete this transient: expanding_archives_months

후기

2016년 9월 3일
It looks nice if you only have a few posts per month, but I wish you had the option to choose whether the month will appear expanded or collapsed as a default. If you do a post per day, opening the page with the month expanded is way too long and makes the sidebar look cluttered. Bullets before each post would also make it look cleaner.
2016년 9월 3일 답글 1개
Took a punt, as no demo offered (yr blog has no sidebar, AFAIK), and works nicely. Element classes assist styling.
모든 6 평가 읽기

기여자 & 개발자

“Expanding Archives”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

“Expanding Archives”(이)가 2 개 언어로 번역되었습니다. 기여해 주셔서 번역자님께 감사드립니다.

자국어로 “Expanding Archives”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

2.1.0 – 23 March 2024

  • New: Added support (via a filter) for specifying a cut-off date. See readme FAQ for details.

2.0.2 – 3 February, 2022

  • Refactor: Posts are now retrieved via a custom REST API endpoint, instead of the default. This allows developers to more easily filter the query arguments for retrieving posts.

2.0.1 – 31 January, 2022

  • Fix: Only showing a max of 10 posts in a month. Now it will show up to 100.

2.0 – 23 January, 2022

  • Dev: Plugin has been rewritten (should be backwards compatible).
  • Dev: Removed jQuery dependency (and dropped IE support).
  • Dev: Remove Font Awesome spinner in favour of vanilla CSS.
  • Fix: Invalid HTML when the site has no posts.

1.1.1

  • Added filters that allow developers to easily modify the archive list.

1.1.0

  • Added a new option in the widget where you can choose to auto expand the current month or not.

1.0.5

  • Use transient for database query that fetches all the months.

1.0.4

  • Added xhrFields: { withCredentials: true } to ajax call.

1.0.3

  • Changed the month URLs to use get_month_link() instead of building them manually.
  • Tested the plugin with WordPress 4.4 beta.

1.0.2

  • Tested with WordPress version 4.3.

1.0.1

  • Month names are now displayed using date_i18n() instead of date() so they will translate.

1.0.0

  • Initial release.