我正在使用woocommerce插件和Wordpress。我只需要在一个页面上删除侧边栏(我有联系页面,我不希望它显示)。 这是我到目前为止所尝试的:
remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10 );
添加到functions.php function woocommerce_remove_sidebar_shop() {
if( is_page('Contact')){
remove_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10 );
}
}
add_action( 'template_redirect', 'woocommerce_remove_sidebar_shop' );
to functions.php add_action( 'woocommerce_sidebar', 'woocommerce_get_sidebar', 10 );
这些都不起作用,我不知道为什么。