Title: WP Admin Quicknav
Author: deardooley
Published: <strong>2014 年 8 月 27 日</strong>
Last modified: 2015 年 7 月 26 日

---

搜索插件

**该插件尚未通过WordPress的最新3个主要版本进行测试**。 当与较新版本的WordPress一起
使用时，可能不再受到维护或支持，并且可能会存在兼容性问题。

![](https://s.w.org/plugins/geopattern-icon/wp-admin-quicknav.svg)

# WP Admin Quicknav

 作者：[deardooley](https://profiles.wordpress.org/deardooley/)

[下载](https://downloads.wordpress.org/plugin/wp-admin-quicknav.zip)

 * [详情](https://cn.wordpress.org/plugins/wp-admin-quicknav/#description)
 * [评价](https://cn.wordpress.org/plugins/wp-admin-quicknav/#reviews)
 *  [安装](https://cn.wordpress.org/plugins/wp-admin-quicknav/#installation)
 * [开发进展](https://cn.wordpress.org/plugins/wp-admin-quicknav/#developers)

 [支持](https://wordpress.org/support/plugin/wp-admin-quicknav/)

## 描述

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.

## 安装

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

## 常见问题

  Will this work with my custom post types?

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

## 评价

此插件暂无评价。

## 贡献者及开发者

「WP Admin Quicknav」是开源软件。 以下人员对此插件做出了贡献。

贡献者

 *   [ deardooley ](https://profiles.wordpress.org/deardooley/)

[帮助将「WP Admin Quicknav」翻译成简体中文。](https://translate.wordpress.org/projects/wp-plugins/wp-admin-quicknav)

### 对开发感兴趣吗?

您可以[浏览代码](https://plugins.trac.wordpress.org/browser/wp-admin-quicknav/)，
查看[SVN仓库](https://plugins.svn.wordpress.org/wp-admin-quicknav/)，或通过[RSS](https://plugins.trac.wordpress.org/log/wp-admin-quicknav/?limit=100&mode=stop_on_copy&format=rss)
订阅[开发日志](https://plugins.trac.wordpress.org/log/wp-admin-quicknav/)。

## 更新日志

#### 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

## 额外信息

 *  版本 **0.3**
 *  最后更新：**11 年前**
 *  活跃安装数量 **20+**
 *  WordPress 版本 ** 3.5 或更高版本 **
 *  已测试的最高版本为 **3.9.40**
 *  语言
 * [English (US)](https://wordpress.org/plugins/wp-admin-quicknav/)
 * 标签
 * [admin](https://cn.wordpress.org/plugins/tags/admin/)[productivity](https://cn.wordpress.org/plugins/tags/productivity/)
   [quick navigation](https://cn.wordpress.org/plugins/tags/quick-navigation/)
 *  [高级视图](https://cn.wordpress.org/plugins/wp-admin-quicknav/advanced/)

## 评级

尚未提交反馈。

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

[查看全部评论](https://wordpress.org/support/plugin/wp-admin-quicknav/reviews/)

## 贡献者

 *   [ deardooley ](https://profiles.wordpress.org/deardooley/)

## 支持

有话要说吗？是否需要帮助？

 [查看支持论坛](https://wordpress.org/support/plugin/wp-admin-quicknav/)

## 捐助

您愿意支持这个插件的发展吗?

 [ 捐助此插件 ](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=YUVMERFH5879Q)