你有javascript文件和CSS文件!然后你必须把这些文件放在你的子主题文件夹中themes -> your_child_theme_folder -> js(if you dont have js folder then create one) and place your js file here
您必须将css文件放在子主题内的css文件夹中。
现在需要从函数调用js文件。php
如果没有函数。然后先创建子主题文件夹中的php文件。下面是调用js文件的代码
function wpdocs_theme_name_scripts() {
wp_enqueue_script( \'script-name1\', get_stylesheet_directory_uri() . \'/js/YOUR_JS_FILE_NAME\', array(\'jquery\'), true ); //Path of you js file
}
add_action( \'wp_enqueue_scripts\', \'wpdocs_theme_name_scripts\' );
在上述代码中
script-name1
是您将为调用的每个脚本指定的自定义名称,该名称应该是唯一的。我希望您已经知道调用css文件。。