对于产品页面,您可以输入函数。php
function remove_storefront_sidebar() {
if ( is_product() ) {
remove_action( \'storefront_sidebar\', \'storefront_get_sidebar\', 10 );
}
}
add_action( \'get_header\', \'remove_storefront_sidebar\' );
它与最新的woocommerce 2.5.2配合使用,还需要CSS:
.single-product.right-sidebar .content-area {
float: none;
margin-right: 0;
width: 100%;
}