答案 0 :(得分:1)
这可以通过以下简单代码完成:
add_action( 'template_redirect', 'single_product_remove_images', 1 );
function single_product_remove_images() {
// HERE below set your Page ID, title or slug
if( is_page( 56 ) ){
remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_images', 20 );
}
}
代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。
如果您要定位的是帖子ID,则可以使用类似
if( get_the_id() == 56 ){