WC Lightbox、缩放和滑块未加载

时间:2019-05-21 作者:Anake.me

我已在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作为我网站的框架。。。这是否会中断功能的进程?

1 个回复
最合适的回答,由SO网友:Anake.me 整理而成

如果其他人可能遇到类似的问题,我遇到的问题是我没有添加<?php wp_footer(); ?> 将代码写入我的footer.php 文件

如果未添加,则您打算通过页脚加载的任何内容都将不起作用!我花了几个星期才发现有一行代码破坏了我的工作流程。。。

相关推荐