我在儿童主题的函数中有以下内容。php文件:
<?php
function theme_child_add_scripts() {
wp_register_script(
\'script\',
get_stylesheet_directory_uri() . \'/js/script.js\',
array( \'jquery\' ),
null,
false
);
wp_enqueue_script( \'script\' )
}
add_action(\'wp_enqueue_scripts\', \'theme_child_add_scripts\');
脚本。页面上没有包含js,也没有网络请求。可能会出什么问题?目前还不清楚儿童主题是否起作用。php文件甚至正在执行中。
编辑:似乎功能。php文件根本没有被执行,因为我在文件顶部放了一个骰子(“foo”),页面正常加载。为什么会发生这种情况?
在样式中。css:
/*
Theme Name: Theme-child
Template: Theme
*/