Woocommerce:删除'访问网站'或者访问商店'

时间:2015-10-02 18:00:20

标签: wordpress woocommerce

Woocommerce增加了访问商店'每当我激活它时,在Wordpress的管理栏中。这导致我有一个访问网站'和一个访问商店'那里。

但是,我真的不知道这有什么好处(请告诉我,如果有的话) - 所以我想摆脱那个或者访问网站'链接。我怎么能这样做?

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

2 个答案:

答案 0 :(得分:4)

请使用此。

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' );

答案 1 :(得分:0)

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('view-store'); // Remove the view store link
    $wp_admin_bar->remove_menu('site-name');  // Remove the site name menu
}    
add_action( 'wp_before_admin_bar_render', 'remove_admin_bar_links' );
相关问题