Title: Admin Tour
Author: KrishaWeb
Published: <strong>24 ກັນຍາ 2021</strong>
Last modified: 17 ຕຸລາ 2025

---

ຄົ້ນຫາປລັກອິນ

![](https://ps.w.org/admin-tour/assets/banner-772x250.png?rev=2648349)

ປລັກອິນນີ້ **ຍັງບໍ່ທັນໄດ້ຮັບການທົດສອບກັບ WordPress 3 ເວີຊັນຫຼັກຫຼ້າສຸດ**. ມັນອາດຈະ
ບໍ່ໄດ້ຮັບການເບິ່ງແຍງ ຫຼື ສະໜັບສະໜູນອີກຕໍ່ໄປ ແລະ ອາດມີບັນຫາການເຮັດວຽກຮ່ວມກັນເມື່ອ
ໃຊ້ກັບ WordPress ເວີຊັນທີ່ໃໝ່ກວ່າ.

![](https://ps.w.org/admin-tour/assets/icon-256x256.png?rev=2604259)

# Admin Tour

 ໂດຍ [KrishaWeb](https://profiles.wordpress.org/krishaweb/)

[ດາວໂຫຼດ](https://downloads.wordpress.org/plugin/admin-tour.1.4.zip)

 * [ລາຍລອຽດ](https://lo.wordpress.org/plugins/admin-tour/#description)
 * [ການຣີວິວ](https://lo.wordpress.org/plugins/admin-tour/#reviews)
 *  [ການຕິດຕັ້ງ](https://lo.wordpress.org/plugins/admin-tour/#installation)
 * [ການພັດທະນາ](https://lo.wordpress.org/plugins/admin-tour/#developers)

 [ການຊ່ວຍເຫຼືອ](https://wordpress.org/support/plugin/admin-tour/)

## ຄຳອະທິບາຍ

Admin Tour helps you create guided tours inside your WordPress admin area. It’s 
perfect for non-technical users who find the dashboard confusing or forget how things
work after a while.

With Admin Tour, you can walk users through every important section like Posts, 
Pages, Media, Users, Categories, and more using simple tooltips and highlights. 
Even if you already gave them a full demo once, this plugin ensures they can always
find their way around the admin panel without your help.

Developers can also extend it easily using built in hooks and filters to add custom
steps or tours for specific screens.

### Features

• Simple setup, No coding needed
 • Default tours for Posts, Pages, Media, Users,
Settings and Categories • Multi-lingual support • Free updates and support

### Checkout the advanced features of Admin Tour Pro:

• Ready made tours for Dokan vendor users.
 • Dashboard widget for vendor tours.•
Compatible with WooCommerce. • Easily customizable.

[Checkout the Admin Tour Pro](https://store.krishaweb.com/product/admin-tour-pro/)

## ພາບໜ້າຈໍ

[⌊Default dashboard tour⌉⌊Default dashboard tour⌉[

Default dashboard tour

[⌊Category screen walkthrough.⌉⌊Category screen walkthrough.⌉[

Category screen walkthrough.

[⌊Manual start option for specific tours.⌉⌊Manual start option for specific tours
.⌉[

Manual start option for specific tours.

[⌊Dashboard widget listing all available tours.⌉⌊Dashboard widget listing all available
tours.⌉[

Dashboard widget listing all available tours.

## ການຕິດຕັ້ງ

 1. Install the plugin via WordPress or download and upload the plugin to the /wp-content/
    plugins/
 2. Activate the plugin through the ‘Plugins’ menu in WordPress

## ຄຳຖາມທີ່ພົບເລື້ອຍ

### Can I add a new step in a tour?

Yes, you can add it using this filter:

    ```
    add_filter( 'wat_pointers', function( $pointers ) {
        // Register pointer for contact form 7.
        $pointers['toplevel_page_wpcf7'] = array(
            'screen_info' => array(
                'name' => __( 'Contact form List', 'admin-tour' ),
                'url'  => add_query_arg( array( 'page' => 'wpcf7' ), admin_url( 'admin.php' ) ),
            ),
            array(
                'id'             => 'add_new',
                'tagget_element' => '.page-title-action', // jQuery selector ID, class or any other method.
                'title'          => __( 'Add new', 'admin-tour' ),
                'content'        => __( 'Add new form.', 'admin-tour' ),
                'position'       => array(
                    'edge'  => 'left',
                    'align' => 'left',
                ),
                'url' => add_query_arg( array( 'page' => 'wpcf7-new' ), admin_url( 'admin.php' ) ),
            ),
            array(
                'id'             => 'edit',
                'tagget_element' => '#the-list tr:eq(0) .title', // jQuery selector ID, class or any other method.
                'title'          => __( 'Edit form', 'admin-tour' ),
                'content'        => __( 'Edit contact form.', 'admin-tour' ),
                'position'       => array(
                    'edge'  => 'bottom',
                    'align' => 'left',
                ),
            ),
        );
        return $pointers;
    } );
    ```

screen_info array is used for the dahboard widget, what ever text you wish to keep
there, you can keep it here.

### Can I reorder the steps?

Yes, you can do it easily using this filter:

    ```
    add_filter( 'wat_pointers', function( $pointers ) {
        // default the below pointer will be added to the last
        $pointers['general'][] = array(
            'id'    => 'menu_comments',
            'tagget_element' => '#menu-comments', // jQuery selector ID, class or any other method.
            'title' => __( 'Comments', 'admin-tour' ),
            'content' => __( 'You can hover the category and you will see the edit option, click on it to edit that category.', 'admin-tour' ),
            'next_pointer' => '',
            'position' => array(
                'edge' => 'left',
                'align' => 'left',
            ),
        );
        // Change pointer ordering as per your wish
        $reorder  = array( 'menu_posts', 'menu_media', 'menu_pages', 'menu_comments', 'menu_users', 'wat_widget' );
        $pointers['general'] = wat_reorder_pointers( $pointers['general'] );
        return $pointers;
    } );
    ```

### How can I change the default login interval?

You can do it using the below filter. You need to add it in the function file.

    ```
    add_filter( 'wat_dismiss_expiration_time', function( $expiration ) {
        return 60 * DAY_IN_SECONDS;
    } );
    ```

### Is there a way to display tour for other user role?

Yes, you can do it easily using this filter:

    ```
    add_filter( 'wat_allowed_roles', function( $roles ) {
        $roles[] = 'shop_manager';
        return $roles;
    } );
    ```

### How can I remove current screen option in admin bar?

You can do it using this constant in wp-config.php:

    ```
    define( 'WAT_SHOW_ADMIN_BAR_OPTION', false );
    ```

### I have an idea for a great way to improve this plugin.

Great! I’d love to hear from you at support@krishaweb.com

## ການຣີວິວ

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

### 󠀁[A very important plugin | Great Team](https://wordpress.org/support/topic/a-very-important-plugin-great-team/)󠁿

 [InfoBahn](https://profiles.wordpress.org/infobahntechnologies/) 28 ກໍລະກົດ 2022
1 ການຕອບກັບ

The plugin is so important. The development team is amazing. I reported an issue
and they released an update within 24 hours.

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

### 󠀁[Review](https://wordpress.org/support/topic/review-432/)󠁿

 [Vrajesh Thakkar](https://profiles.wordpress.org/vrajeshthakkar/) 4 ຕຸລາ 2021 1
ການຕອບກັບ

This plugin is very good, and easy to use.

 [ ອ່ານການຣີວິວທັງໝົດ 2 ລາຍການ ](https://wordpress.org/support/plugin/admin-tour/reviews/)

## ຜູ້ຮ່ວມພັດທະນາ ແລະ ຜູ້ພັດທະນາ

“Admin Tour” ແມ່ນຊອຟແວໂອເພັນຊອດ (Open Source). ບຸກຄົນຕໍ່ໄປນີ້ໄດ້ມີສ່ວນຮ່ວມໃນການພັດ
ທະນາປລັກອິນນີ້.

ຜູ້ຮ່ວມພັດທະນາ

 *   [ KrishaWeb ](https://profiles.wordpress.org/krishaweb/)
 *   [ Dilip Bheda ](https://profiles.wordpress.org/dilipbheda/)
 *   [ Harsh Patel ](https://profiles.wordpress.org/harsh175/)

“Admin Tour” ໄດ້ຖືກແປເປັນ 3 ພາສາທ້ອງຖິ່ນ. ຂໍຂອບໃຈ [ທີມງານຜູ້ແປ](https://translate.wordpress.org/projects/wp-plugins/admin-tour/contributors)
ສຳລັບການປະກອບສ່ວນຂອງເຂົາເຈົ້າ.

[ແປ “Admin Tour” ເປັນພາສາຂອງເຈົ້າ.](https://translate.wordpress.org/projects/wp-plugins/admin-tour)

### ສົນໃຈຮ່ວມພັດທະນາບໍ່?

[ເບິ່ງລະຫັດ](https://plugins.trac.wordpress.org/browser/admin-tour/), ກວດເບິ່ງ [ຄັງເກັບ SVN](https://plugins.svn.wordpress.org/admin-tour/),
ຫຼື ຕິດຕາມ [ບັນທຶກການພັດທະນາ](https://plugins.trac.wordpress.org/log/admin-tour/)
ຜ່ານ [RSS](https://plugins.trac.wordpress.org/log/admin-tour/?limit=100&mode=stop_on_copy&format=rss).

## ບັນທຶກການປ່ຽນແປງ

#### 1.4

 * Compatibility and security improvements.

#### 1.3

 * Bug fixed.

#### 1.2

 * Added Pro features.

#### 1.1

 * Added wat_allowed_roles filter.

#### 1.0

 * Initial Release

## ປລັກອິນເພື່ອການຄ້າ

ປລັກອິນນີ້ແມ່ນຟຣີ ແຕ່ມີການອັບເກຣດ ຫຼື ການຊ່ວຍເຫຼືອແບບເພື່ອການຄ້າເພີ່ມເຕີມ. [ເບິ່ງການຊ່ວຍເຫຼືອ](https://www.krishastore.io/product/admin-tour-pro/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=wporg-plugin-page&utm_content=admin-tour-pro)

## ຂໍ້ມູນກຳກັບ (Meta)

 *  ເວີຊັນ **1.4**
 *  ອັບເດດຫຼ້າສຸດເມື່ອ **10 ເດືອນ ທີ່ຜ່ານມາ** ທີ່ຜ່ານມາ
 *  ການຕິດຕັ້ງທີ່ໃຊ້ງານຢູ່ **10+**
 *  ເວີຊັນ WordPress ** 6.6 ຫຼື ສູງກວ່າ **
 *  ທົດສອບເຖິງເວີຊັນ **6.8.8**
 *  ເວີຊັນ PHP ** 8.1 ຫຼື ສູງກວ່າ **
 *  ພາສາ
 * [Czech](https://cs.wordpress.org/plugins/admin-tour/), [Dutch](https://nl.wordpress.org/plugins/admin-tour/),
   [English (US)](https://wordpress.org/plugins/admin-tour/), ແລະ [Gujarati](https://gu.wordpress.org/plugins/admin-tour/).
 *  [ແປເປັນພາສາຂອງເຈົ້າ](https://translate.wordpress.org/projects/wp-plugins/admin-tour)
 * ແທັກ
 * [admin guide](https://lo.wordpress.org/plugins/tags/admin-guide/)[introduction](https://lo.wordpress.org/plugins/tags/introduction/)
   [tutorial](https://lo.wordpress.org/plugins/tags/tutorial/)[user onboarding](https://lo.wordpress.org/plugins/tags/user-onboarding/)
   [walkthrough](https://lo.wordpress.org/plugins/tags/walkthrough/)
 *  [ມຸມມອງຂັ້ນສູງ](https://lo.wordpress.org/plugins/admin-tour/advanced/)

## ການໃຫ້ຄະແນນ

 5 ຈາກທັງໝົດ 5 ດາວ.

 *  [  ການວິຈານ 5 ດາວ ຈຳນວນ 2 ລາຍການ     ](https://wordpress.org/support/plugin/admin-tour/reviews/?filter=5)
 *  [  ການວິຈານ 4 ດາວ ຈຳນວນ 0 ລາຍການ     ](https://wordpress.org/support/plugin/admin-tour/reviews/?filter=4)
 *  [  ການວິຈານ 3 ດາວ ຈຳນວນ 0 ລາຍການ     ](https://wordpress.org/support/plugin/admin-tour/reviews/?filter=3)
 *  [  ການວິຈານ 2 ດາວ ຈຳນວນ 0 ລາຍການ     ](https://wordpress.org/support/plugin/admin-tour/reviews/?filter=2)
 *  [  ການວິຈານ 1 ດາວ ຈຳນວນ 0 ລາຍການ     ](https://wordpress.org/support/plugin/admin-tour/reviews/?filter=1)

[ການທົບທວນຂອງທ່ານ](https://wordpress.org/support/plugin/admin-tour/reviews/#new-post)

[ເບິ່ງທັງໝົດ ການຣີວິວ](https://wordpress.org/support/plugin/admin-tour/reviews/)

## ຜູ້ຮ່ວມພັດທະນາ

 *   [ KrishaWeb ](https://profiles.wordpress.org/krishaweb/)
 *   [ Dilip Bheda ](https://profiles.wordpress.org/dilipbheda/)
 *   [ Harsh Patel ](https://profiles.wordpress.org/harsh175/)

## ການຊ່ວຍເຫຼືອ

ມີຄຳຖາມ ຫຼື ຕ້ອງການຄວາມຊ່ວຍເຫຼືອບໍ່?

 [ເບິ່ງຟໍຣັມການຊ່ວຍເຫຼືອ](https://wordpress.org/support/plugin/admin-tour/)