This plugin hasn’t been tested with the latest three major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.

WP Admin Quicknav

Description

Adds a simple dropdown box at the top admin edit screens allowing you to quickly jump from one page, post, or custom post type to the next without having to return to the respective listing page.

Installation

  1. Upload the extracted archive to wp-content/plugins/
  2. Activate the plugin through the ‘Plugins’ menu
  3. Enjoy!

Manual Usage

If you would like to filter the contents of the quicklink box, you can add a custom action for each post type you would like to filter:

add_action('wp_admin_quicknav_options_post', 'filter_post_quicknav');
function filter_post_quicknav($options=array())
{
  $params = array("post_type"=>'post',
                  "suppress_filters"=>false,
                  "posts_per_page"=>-1,
                  "orderby"=>'date',
                  "order"=>'ASC');

  $posts = get_posts($params);

  if (count($posts) > 0)
  {
    foreach($posts as $post)
    {
      $options[$post->post_title] = $post->ID;
    }
  }

  return $options;
}

You can style the quicknav combo box with css using its custom idenitifier:

#wp_admin_quicknav {
  margin-left: 10px;
}

FAQ

Will this work with my custom post types?

Yes. It will work with all posts, pages, and custom post types.

Reviews

There are no reviews for this plugin.

Contributors and Developers

“WP Admin Quicknav” is open source software. The following people have contributed to this plugin.

Contributors

Translate “WP Admin Quicknav” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Change Log

0.3

  • Added composer.json for use composer installations

0.2

  • Fixed php warnings when used on a new post/page

0.1

  • First commit