Wordpress not showing jQuery

时间:2020-12-30 作者:Vijay Patil

我正在尝试链接一个新的JavaScript文件,希望在其中向内容添加一些自定义jQuery。但它并没有显示在我的网站或网页上。

以下是中的代码functions.php 和我的JavaScript文件

function my_child_script(){
    wp_enqueue_script(
        \'custom-child\',
        get_stylesheet_directory_uri() . \'/js/child-custom.js\',
        array( \'jquery\' ),
        \'1.0.0\',
        true
    );
}
add_action( \'wp_enqueue_script\', \'my_child_script\' );
这就是我在自定义js文件中要做的

jQuery(document).ready(function() {
    jQuery(".block-title-wrap").hide();
});

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

只需将添加操作行替换到此行:add_action( \'wp_enqueue_scripts\', \'my_child_script\' ); 并再次检查

相关推荐

将POST内容输出为jQuery.html()字符串

每个人我试图创建一个工具提示,该提示显示在段落中的特定单词(a标记)上,显示在我的页面上的帖子内容中。我设法添加了一个类(“office”)正如Gutenberg所说,我在前端使用它来定位其中的锚标记并执行jQuery。html()向作为工具提示div的标记(文本除外)添加更多内容。此工具提示div的内容需要是特定帖子的内容。请注意,我不想在Gutenberg中添加div,因为我想让客户也能轻松完成。基本上这是我的代码:$(function(){ $(\'p.office a\').html(\