在wordpress儿童主题中禁用功能

时间:2017-07-07 09:28:46

标签: wordpress

如何禁用;

add_theme_support( 'wc-product-gallery-zoom' );
add_theme_support( 'wc-product-gallery-lightbox' );
add_theme_support( 'wc-product-gallery-slider' );       

在wordpress父主题的functions.php中从子主题? 请帮忙!

1 个答案:

答案 0 :(得分:1)

这将删除子主题的functions.php中的支持和使用(如果子主题激活,否则放入父主题function.php)

<?php
add_action( 'after_setup_theme', 'remove_featured_images_from_child_theme', 11 ); 

function remove_featured_images_from_child_theme() {

    // This will remove support
    remove_theme_support( 'wc-product-gallery-zoom' );
    remove_theme_support( 'wc-product-gallery-lightbox' );
    remove_theme_support( 'wc-product-gallery-slider' );
}
?>