Usher

0

Usher brings Gmail-like keyboard shortcuts for navigating around the various core pages of the WordPress admin. Additionally, it includes a robust API for registering new global and scr

Version
Last updated
Active installations
WordPress Version
Tested up to
PHP Version
Rating
Total ratings
Tag
This plugin is outdated and might not be supported anymore.

Description

Usher brings Gmail-like keyboard shortcuts for navigating around the various core pages of the WordPress admin.

Additionally, it includes a robust API for registering new global and screen-specific keyboard shortcuts.

To register new shortcuts, use the Usheregister_shortcut() function. For example:

Add a shortcut for the EDD Dashboard

Usheregister_shortcut( 'g d', array(
    'label' => __( 'Navigate to the EDD dashboard', 'textdomain' ),
    'url'   => 'edit.php?post_type=download',
    'cap'   => 'manage_shop_settings'
) );

Add a shortcut for the Jetpack Dashboard

Usheregister_shortcut( 'g j', array(
    'label' => __( 'Navigate to the Jetpack dashboard', 'textdomain' ),
    'url'   => 'admin.php?page=jetpack',
    'cap'   => 'manage_options',
) );