我想在管理栏中添加一个链接来启用和禁用插件。
在代码下面,我想知道它是否正确。
谢谢
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 );