WordPress将快捷方式链接添加到管理栏中的启用/禁用插件

时间:2019-05-10 08:23:17

标签: wordpress

我想在管理栏中添加一个链接来启用和禁用插件。
在代码下面,我想知道它是否正确。 谢谢

function custom_admin_bar_link( $admin_bar ) {

    $admin_bar->add_menu( array(
    'id'    => 'wp-custom-link',
    'title' => 'Custom Item',
    'href'  => '',
    'meta'  => array(
             'title' => __('Custom'),
    ),
    ));

    $admin_bar->add_menu( array(
    'id'    => 'disable-link',
    'parent'=> 'wp-custom-link',
    'title' => 'Disable Amazon',
    'href'  => 'https://mydisablelink.com/',
    'meta'  => array(
             'title' => __('Disable Amazon'),
    ),
    ));

    $admin_bar->add_menu( array(
    'id'    => 'unable-link',
    'parent'=> 'wp-custom-link',
    'title' => 'Enable Amazon',
    'href'  => 'https://mydisablelink.com/',
    'meta'  => array(
       'title' => __('Enable Amazon'),
    ),
    ));
}

add_action( 'admin_bar_menu', 'custom_admin_bar_link', 100 );

0 个答案:

没有答案