Title: Admin Posts Navigation
Author: The Website Factory
Published: <strong>30 de Junio de  2025</strong>
Last modified: 30 de Junio de  2025

---

Buscar plugins

![](https://ps.w.org/admin-posts-navigation/assets/banner-772x250.jpg?rev=3320218)

![](https://ps.w.org/admin-posts-navigation/assets/icon-256x256.jpg?rev=3320218)

# Admin Posts Navigation

 Por [The Website Factory](https://profiles.wordpress.org/thewebsitefactory/)

[Descargar](https://downloads.wordpress.org/plugin/admin-posts-navigation.1.4.1.zip)

 * [Detalles](https://cl.wordpress.org/plugins/admin-posts-navigation/#description)
 * [Reseñas](https://cl.wordpress.org/plugins/admin-posts-navigation/#reviews)
 *  [Instalación](https://cl.wordpress.org/plugins/admin-posts-navigation/#installation)
 * [Desarrollo](https://cl.wordpress.org/plugins/admin-posts-navigation/#developers)

 [Soporte](https://wordpress.org/support/plugin/admin-posts-navigation/)

## Descripción

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); `

## Capturas de pantalla

 * [[
 * Classic Editor navigation buttons with sorting dropdown below the post title
 * [[
 * Gutenberg navigation panel with sorting control in the Document Settings sidebar
 * [[
 * Position counter showing current location in post sequence
 * [[
 * Sorting dropdown with Date Published, Alphabetical, and Post ID options

## Instalación

 1. Upload the plugin files to the `/wp-content/plugins/admin-posts-navigation` directory,
    or install the plugin through the WordPress plugins screen directly.
 2. Activate the plugin through the ‘Plugins’ screen in WordPress.
 3. Start editing any post or page – navigation buttons will appear automatically.

## FAQ

### Does this work with custom post types?

Yes! The plugin automatically detects and supports all public custom post types.
No configuration needed.

### Does this work with both Classic Editor and Gutenberg?

Absolutely. In Classic Editor, buttons appear below the post title with an inline
sorting dropdown. In Gutenberg, a navigation panel appears in the Document Settings
sidebar with an integrated sorting control.

### Can I customize the sorting order?

Yes! Choose from three sorting options: Date Published, Alphabetical, or Post ID.
Your sorting preference is saved automatically for each post type.

### Are my sorting preferences saved?

Yes! Each user’s sorting preferences are saved individually per post type. For example,
you can choose to sort posts by Date Published while sorting pages Alphabetically,
and your preferences will be remembered across sessions.

### Does this affect site performance?

No. The plugin only loads in the WordPress admin area and uses intelligent caching
to minimize database queries.

### Can I exclude certain post types?

Yes, use the `twf_admin_posts_navigation_excluded_types` filter to exclude specific
post types.

## Reseñas

![](https://secure.gravatar.com/avatar/c0ab3ad8f96c0054a63e44fd798162bdb653996087a6059efb027c339048114d?
s=60&d=retro&r=g)

### 󠀁[Great Plugin!](https://wordpress.org/support/topic/great-plugin-41301/)󠁿

 [jodzeee](https://profiles.wordpress.org/jodzeee/) 18 de Febrero de 2026

I was happy to find this plugin. It makes it easy when editing many products.

 [ Leer los 0 comentarios ](https://wordpress.org/support/plugin/admin-posts-navigation/reviews/)

## Colaboradores & Desarrolladores

“Admin Posts Navigation” es software de código abierto. Las siguientes personas 
han contribuido a este plugin.

Colaboradores

 *   [ The Website Factory ](https://profiles.wordpress.org/thewebsitefactory/)
 *   [ mbrinson ](https://profiles.wordpress.org/mbrinson/)

[Traduce “Admin Posts Navigation” a tu idioma.](https://translate.wordpress.org/projects/wp-plugins/admin-posts-navigation)

### ¿Interesado en el desarrollo?

[Revisa el código](https://plugins.trac.wordpress.org/browser/admin-posts-navigation/),
echa un vistazo al [repositorio SVN](https://plugins.svn.wordpress.org/admin-posts-navigation/),
o suscríbete al [registro de desarrollo](https://plugins.trac.wordpress.org/log/admin-posts-navigation/)
por [RSS](https://plugins.trac.wordpress.org/log/admin-posts-navigation/?limit=100&mode=stop_on_copy&format=rss).

## Historial de cambios

#### 1.4.1

 * Improved security with better nonce verification
 * Enhanced user permission checks

#### 1.4.0

 * Added customizable sorting dropdown with Date Published, Alphabetical, and Post
   ID options
 * Added user preference storage – sort preferences saved per post type
 * Enhanced Classic Editor with inline sorting dropdown
 * Enhanced Gutenberg with sorting control in navigation panel
 * Added AJAX functionality for real-time sort preference updates
 * Improved caching system to include sort method in cache keys
 * Added proper cleanup of user preferences on plugin uninstall

#### 1.3.2

 * Performance improvements – removed direct meta_query usage

#### 1.3.1

 * Fixed textdomain consistency issues

#### 1.3.0

 * Initial release
 * Classic Editor and Gutenberg support
 * Automatic custom post type detection
 * Security features: rate limiting, nonce verification
 * Performance optimization with intelligent caching

## Meta

 *  Versión **1.4.1**
 *  Última actualización **hace 10 meses**
 *  Instalaciones activas **90+**
 *  Versión de WordPress ** 5.0 o superior **
 *  Probado hasta **6.8.5**
 *  Versión de PHP ** 7.4 o superior **
 *  Idioma
 * [English (US)](https://wordpress.org/plugins/admin-posts-navigation/)
 * Etiquetas
 * [admin](https://cl.wordpress.org/plugins/tags/admin/)[editor](https://cl.wordpress.org/plugins/tags/editor/)
   [navigation](https://cl.wordpress.org/plugins/tags/navigation/)[pages](https://cl.wordpress.org/plugins/tags/pages/)
   [posts](https://cl.wordpress.org/plugins/tags/posts/)
 *  [Vista Avanzada](https://cl.wordpress.org/plugins/admin-posts-navigation/advanced/)

## Calificaciones

 5 de 5 estrellas.

 *  [  1 valoración de 5 estrellas     ](https://wordpress.org/support/plugin/admin-posts-navigation/reviews/?filter=5)
 *  [  0 valoraciones de 4 estrellas     ](https://wordpress.org/support/plugin/admin-posts-navigation/reviews/?filter=4)
 *  [  0 valoraciones de 3 estrellas     ](https://wordpress.org/support/plugin/admin-posts-navigation/reviews/?filter=3)
 *  [  0 valoraciones de 2 estrellas     ](https://wordpress.org/support/plugin/admin-posts-navigation/reviews/?filter=2)
 *  [  0 valoraciones de 1 estrellas     ](https://wordpress.org/support/plugin/admin-posts-navigation/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/admin-posts-navigation/reviews/#new-post)

[Ver todas las reseñas](https://wordpress.org/support/plugin/admin-posts-navigation/reviews/)

## Colaboradores

 *   [ The Website Factory ](https://profiles.wordpress.org/thewebsitefactory/)
 *   [ mbrinson ](https://profiles.wordpress.org/mbrinson/)

## Soporte

¿Tienes algo que decir? ¿Necesitas ayuda?

 [Ver el foro de soporte](https://wordpress.org/support/plugin/admin-posts-navigation/)