Title: WP Admin Quicknav
Author: deardooley
Published: <strong>27 Tháng 8, 2014</strong>
Last modified: 26 Tháng 7, 2015

---

Tìm kiếm plugin

Plugin này **chưa được cập nhật với 3 phiên bản mới nhất của WordPress**. Nó có 
thể không được hỗ trợ và bảo trì, và có thể xung đột với các phiên bản WordPress
mới nhất.

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

# WP Admin Quicknav

 Bởi [deardooley](https://profiles.wordpress.org/deardooley/)

[Tải về](https://downloads.wordpress.org/plugin/wp-admin-quicknav.zip)

 * [Chi tiết](https://vi.wordpress.org/plugins/wp-admin-quicknav/#description)
 * [Đánh giá](https://vi.wordpress.org/plugins/wp-admin-quicknav/#reviews)
 *  [Cài đặt](https://vi.wordpress.org/plugins/wp-admin-quicknav/#installation)
 * [Nhà phát triển](https://vi.wordpress.org/plugins/wp-admin-quicknav/#developers)

 [Hỗ trợ](https://wordpress.org/support/plugin/wp-admin-quicknav/)

## Mô tả

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.

## Cài đặt

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

## Hỏi đáp

  Will this work with my custom post types?

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

## Đánh giá

Không có đánh giá nào cho plugin này.

## Người đóng góp & Lập trình viên

“WP Admin Quicknav” là mã nguồn mở. Những người sau đã đóng góp vào plugin này.

Những người đóng góp

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

[Dịch “WP Admin Quicknav” sang ngôn ngữ của bạn.](https://translate.wordpress.org/projects/wp-plugins/wp-admin-quicknav)

### Muốn tham gia phát triển?

[Duyệt code](https://plugins.trac.wordpress.org/browser/wp-admin-quicknav/), check
out [SVN repository](https://plugins.svn.wordpress.org/wp-admin-quicknav/), hoặc
theo dõi [nhật ký phát triển](https://plugins.trac.wordpress.org/log/wp-admin-quicknav/)
qua [RSS](https://plugins.trac.wordpress.org/log/wp-admin-quicknav/?limit=100&mode=stop_on_copy&format=rss).

## Nhật ký thay đổi

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

## Meta

 *  Phiên bản **0.3**
 *  Cập nhật lần cuối **11 năm trước**
 *  Số lượt cài đặt **20+**
 *  Phiên bản WordPress ** 3.5 hoặc cao hơn **
 *  Đã kiểm tra lên đến **3.9.40**
 *  Ngôn ngữ
 * [English (US)](https://wordpress.org/plugins/wp-admin-quicknav/)
 * Thẻ
 * [admin](https://vi.wordpress.org/plugins/tags/admin/)[productivity](https://vi.wordpress.org/plugins/tags/productivity/)
   [quick navigation](https://vi.wordpress.org/plugins/tags/quick-navigation/)
 *  [Nâng cao](https://vi.wordpress.org/plugins/wp-admin-quicknav/advanced/)

## Đánh giá

Chưa có đánh giá nào được gửi.

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

[Xem tất cả đánh giá](https://wordpress.org/support/plugin/wp-admin-quicknav/reviews/)

## Những người đóng góp

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

## Hỗ trợ

Có điều gì muốn nói? cần giúp đỡ?

 [Xem diễn đàn hỗ trợ](https://wordpress.org/support/plugin/wp-admin-quicknav/)

## Ủng hộ

Bạn có muốn hỗ trợ vào sự phát triển của plugin này?

 [ Ủng hộ plugin này ](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=YUVMERFH5879Q)