我已在functions.php
, 但是,Lightbox、Zoom和滑块都不起作用。CSS似乎是为刷卡加载的,但是没有加载javascript文件。
我没有错误,那会是什么问题呢?它是否涉及函数代码本身?
运行最新的WooCommerce(v3.6.3)和最新的Wordpress(v5.2)
function fd_theme_support() {
add_theme_support( \'woocommerce\' );
add_theme_support( \'wc-product-gallery-zoom\' );
add_theme_support( \'wc-product-gallery-lightbox\' );
add_theme_support( \'wc-product-gallery-slider\' );
add_theme_support( \'custom-logo\', array(
\'height\' => 100,
\'width\' => 400,
\'flex-height\' => true,
\'flex-width\' => true,
\'header-text\' => array( \'site-title\', \'site-description\' ),
) );
}
add_action( \'after_setup_theme\', \'fd_theme_support\', 10 );
我也在使用Bootstrap 4作为我网站的框架。。。这是否会中断功能的进程?