Archive Content with Archived Post Status
by Joshua David Nelson 4.9 (36 reviews)

Archive Content with Archived Post Status

Use an "Archived" status to unpublish content without having to trash it.

Archive Content with Archived Post Status ranks #3,002 among WordPress.org plugins with 5,000+ active installations, a 4.9/5 rating from 36 reviews, and was last updated Feb 17, 2026. Data from WordPress.org, refreshed twice daily — see methodology.

Tested up to WP 6.9 (Current: 7.1.1)
v0.3.12 Current Version v0.3.12
Updated 7 months ago Last Update on 17 Feb, 2026
Refreshed 11 hours ago Last Refreshed on
Top 5% by installs
View on WordPress.org
Rank
#3,002
-1 this week
Active Installs
5K+
-14.7%
KW Avg Position
7.3
No change
Downloads
81.6K
+52 today
Support Resolved
0%
No change
Rating
98%
Review 4.9 out of 5
4.9 (36 reviews)

Next Milestone 6K

Total Progress 90.5%
5K+ 6K+
33
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro

Unlock Exact Install Count

See the precise estimated active installs for this plugin, calculated from real-time ranking data.

  • Exact install estimates within tiers
  • Track install growth over time
  • Milestone progress predictions
Upgrade to Pro
Need 95 more installs to reach 6K+

Rank Changes

2,847 2,924 3,001 3,077 3,154 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026
2,992 2,999 3,007 3,014 3,021 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026
Current #3,002
Change
Best #

Upgrade to Pro

Unlock 30-day and 90-day rank history charts with a Pro subscription.

Upgrade Now

Active Installs Growth

Active Installs 0,000,000+
Growth +0.0%
Peak 0,000,000

Downloads Growth

0 100 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026
0 100 06-09-2026 07-09-2026 08-09-2026 09-09-2026 10-09-2026 11-09-2026 12-09-2026 13-09-2026 14-09-2026 15-09-2026 16-09-2026 17-09-2026 18-09-2026 19-09-2026 20-09-2026 21-09-2026
Downloads
Growth
Peak

Upgrade to Pro

Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.

Upgrade Now

Reviews & Ratings

4.9
36 reviews
Overall 98%
5
34 (94%)
4
1 (3%)
3
0 (0%)
2
0 (0%)
1
1 (3%)

Security History

Source: WPVulnerability

No known vulnerabilities on record for Archive Content with Archived Post Status. Checked 1 week ago.

Track This Plugin

Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.

Start Tracking Free

Plugin Details

Version
0.3.12
Last Updated
Feb 17, 2026
Requires WP
5.9+
Tested Up To
6.9
PHP Version
8.1 or higher
Author
Joshua David Nelson

Support & Rating

Rating
★ ★ ★ ★ ★ 4.9
Reviews
36
Support Threads
0
Resolved
0%

Keywords

Upgrade to Pro

Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.

Upgrade Now

TL;DR

AI summary of the plugin's readme

This plugin is for WordPress site owners and administrators managing posts, pages, or custom post types. It lets them unpublish content by marking it as "Archived" instead of deleting or trashing it, hiding it from public view while keeping it in the system.

  • Archived status for content
  • Unpublish without trashing
  • Hides content from public view
  • Compatible with posts and pages
  • Supports public custom post types
  • Easily extended
  • Supports 13+ languages

Frequently Asked Questions

Common questions about Archive Content with Archived Post Status

Actually, no, they are not the same thing. The Draft status is a "pre-published" status that is reserved for content that is still being worked on. You can still make changes to content marked as Draft, and you can preview your changes. The Private status is a special kind of published status. It means the content is published, but only certain logged-in users can view it. The Archived post status, on the other hand, is meant to be a "post-published" status. Once a post has been set to Archived it can no longer be edited or viewed. Of course, you can always change the status back to Draft or Publish if you want to be able to edit its content again.
Yes, there is nothing wong with trashing old content. And the behavior of the Archived status is very similar to that of trashing.
This is what makes the Archived post status handy. You can unpublish content without having to delete it forever.
This plugin does not have a settings page. However, there are numerous hooks available in the plugin so you can customize default behaviors. Many of those hooks are listed below in this FAQ.
Archived content is by default viewable for users with the any user with the read_private_posts capability. This means if you are viewing your site while being logged in as an Editor or Administrator, you will see the archived content. However, lower user roles and non-logged-in users will not see the archived content. You can change the default read capability by adding this hook to your theme's functions.php file or as an MU plugin: function my_aps_default_read_capability( $capability ) { $capability = 'read'; return $capability; } add_filter( 'aps_default_read_capability', 'my_aps_default_read_capability' );
Add these hooks to your theme's functions.php file or as an MU plugin: add_filter( 'aps_status_arg_public', '__return_true' ); add_filter( 'aps_status_arg_private', '__return_false' ); add_filter( 'aps_status_arg_exclude_from_search', '__return_false' );
You can change the post status name, the "Archived" string, by adding the code snippet to your theme's functions.php file or as an MU plugin: add_filter( 'aps_archived_label_string', function( $label ) { $label = 'Custom Label'; // replace with your custom label return $label; }); This will change the name used in the admin and on the post title label (see below).
This plugin automatically adds Archived: to the title of archived content. (Note that archived content is only viewable to logged in users with the read_private_posts capability). You can modify the label text, the separator, whether it appears before or after the title, or disable it entirely. Follow the examples below, adding the code snippet to your theme's functions.php file or as an MU plugin. Remove the label add_filter( 'aps_title_label', '__return_false' ); Place the label after the title add_filter( 'aps_title_label_before', '__return_false' ); Change the separator The separator is the string between the "Archived" label and the post title, including spaces. When the label appears before the title, the separator is a colon and space :, if the label is placed after the title it is a dash with spaces on each side -. You can customize the separator with the following filter: add_filter( 'aps_title_separator', function( $sep ) { $sep = ' ~ '; // replace with your separator return $sep; });
Add these hooks to your theme's functions.php file or as an MU plugin: add_filter( 'aps_status_arg_public', '__return_false' ); add_filter( 'aps_status_arg_private', '__return_false' ); add_filter( 'aps_status_arg_show_in_admin_all_list', '__return_false' ); Please note that there is a bug in core that requires public and private to be set to false in order for the aps_status_arg_show_in_admin_all_list to also be false.
Add this hook to your theme's functions.php file or as an MU plugin: function my_aps_excluded_post_types( $post_types ) { $post_types[] = 'my_custom_post_type'; return $post_types; } add_filter( 'aps_excluded_post_types', 'my_aps_excluded_post_types' ); My archived posts have disappeared when I deactivate the plugin!

Sign In / Register

You need to sign in or register to use this feature.