Admin Posts Navigation for WordPress Plugin Directory
Admin Posts Navigation is a WordPress app, with a 5.0 average rating from 1 review, as of Aug 31, 2026.
Admin Posts Navigation is a WordPress Plugin Directory app by The Website Factory. With a rating of 5.0★ from 1 reviews.
AppRanks verdict
Generated from live marketplace data — refreshed daily
Admin Posts Navigation is a category-leading WordPress app with a limited review volume. Category data on the canonical marketplace listing is currently incomplete, so AppRanks falls back to platform-wide rather than category-relative comparison for this listing. 1 reviews put it in the early-traction tier — useful for early-stage stores willing to be on the leading edge. Early-traction review counts are sensitive to single launch periods or feature events, so a 30-day re-check before bigger commitments often resolves whether the trend is sustained. Paid-only pricing means evaluating fit on the marketplace listing or via the developer's documentation before installing. AppRanks tracks rating, review count, pricing tier, and category position daily — the figures on this page reflect the most recent scrape from the canonical WordPress Plugin Directory listing.
Pros
- +High average rating (5.0★) signals consistent merchant satisfaction
- +Published by The Website Factory — established developer track record
Cons
- −Limited review base (1) — ratings can shift significantly with new feedback
Looking to switch from Admin Posts Navigation?
See Admin Posts Navigation's alternatives ranked by audit score, rating, and review velocity.
How Admin Posts Navigation works
Show full descriptionShow less
Admin Posts Navigation solves a common WordPress admin workflow problem: having to go back to the post list every time you want to edit the next or previous post.
Key Features:
Seamless Navigation: Navigate directly between posts without returning to the post list
Customizable Sorting: Choose between Date Published, Alphabetical, or Post ID sorting
User Preferences: Each user’s sort preferences are saved per post type
Universal Support: Works with posts, pages, and all custom post types automatically
Dual Editor Support: Full compatibility with both Classic Editor and Gutenberg Block Editor
Smart Ordering: Uses appropriate default ordering (date for posts, alphabetical for pages)
Position Tracking: Shows your current position (e.g., “Position: 3 of 15 posts”)
Security First: Rate limiting, nonce verification, and capability checks
Performance Optimized: Intelligent caching and optimized database queries
Developer Friendly: Multiple filter hooks for customization
How It Works:
In the Classic Editor, navigation buttons appear below the post title with a sorting dropdown that lets you choose between Date Published, Alphabetical, or Post ID ordering.
In Gutenberg, a “Post Navigation” panel appears in the Document Settings sidebar with Previous/Next buttons and a sorting dropdown for customizing the navigation order.
Sorting Options:
Date Published: Navigate by publication date (newest first for posts, oldest first for pages)
Alphabetical: Navigate by post title in alphabetical order (A-Z)
Post ID: Navigate by WordPress post ID in ascending order
Each user’s sorting preference is remembered per post type, so you can have different sorting for posts vs. pages vs. custom post types.
Perfect For:
Content managers editing multiple posts in sequence
Bloggers reviewing and updating existing content
Developers working with custom post types
Anyone who finds the default WordPress admin workflow tedious
The plugin automatically detects all your custom post types and provides navigation for any content type you can edit.
Developer Hooks Filters:
twf_admin_posts_navigation_excluded_types – Exclude specific post types from navigation
twf_admin_posts_navigation_orderby – Customize ordering for specific post types
twf_admin_posts_navigation_order – Customize sort direction for specific post types
twf_admin_posts_navigation_query_args – Modify the query arguments for finding posts
Example Usage:
`php
// Exclude a custom post type
add_filter(‘twf_admin_posts_navigation_excluded_types’, function($excluded) {
$excluded[] = ‘my_private_post_type’;
return $excluded;
});
// Custom ordering for events
add_filter(‘twf_admin_posts_navigation_orderby’, function($orderby, $post_type) {
if ($post_type === ‘event’) {
return ‘meta_value’;
}
return $orderby;
}, 10, 2);
// Navigate only through featured posts
add_filter(‘twf_admin_posts_navigation_query_args’, function($args, $current_post) {
if ($current_post->post_type === ‘post’) {
$args[‘meta_query’] = array(
array(
‘key’ => ‘featured_post’,
‘value’ => ‘1’,
‘compare’ => ‘=’
)
);
}
return $args;
}, 10, 2);
`
Competitors & alternatives
AppRanks tracks competitor sets per category. For Admin Posts Navigation, the independent listing audit includes a competitive context section, and the full WordPress app index shows the broader marketplace landscape this app competes in. Sign up free to surface a side-by-side competitor matrix customized to your tracked apps.
Frequently asked questions
What is Admin Posts Navigation?
Admin Posts Navigation is an app for WordPress. It currently holds a 5.0-star rating from 1 merchant review, and AppRanks has been tracking its public marketplace data on the refresh cadence published in our methodology. AppRanks tracks its category position, review-velocity trend, and the top alternatives in the same space. Developed by The Website Factory.