2017-07-07 39 views
0

如何禁用;禁用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從兒童主題? 請幫忙!

回答

0

這將刪除支持,並在你的子主題的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'); 
} 
?>