Woocommerce:删除“访问网站”或“访问商店”

dre*_*mer 2 wordpress woocommerce

每当我激活它时,Woocommerce 都会在 Wordpress 的管理栏中添加“访问商店”。这导致我在那里同时拥有“访问站点”和“访问商店”。

但是,我真的不明白这样做有什么好处(请告诉我是否有任何好处) - 所以我想摆脱那个或“访问站点”链接。我怎样才能做到这一点?

(我的问题与此处的海报非常相似,但我无法访问该论坛 - 也许其他人可以访问?http://www.kadencethemes.com/support-forums/topic/woocommerce-remove-visit-存储/ )

Pra*_*ahu 5

请使用这个。

function remove_admin_bar_links() {
    global $wp_admin_bar;
    $wp_admin_bar->remove_menu('view-site');        // Remove the view site link
    $wp_admin_bar->remove_menu('site-name');        // Remove the site name menu
}
add_action( 'wp_before_admin_bar_render', 'remove_admin_bar_links' );
Run Code Online (Sandbox Code Playgroud)