所以我想像在this extension中一样在我的WordPress网站上部署documentation。
我确实按照所有说明进行了操作,并在子主题的我的functions.php文件中添加了toolbar-min.js文件,如以下代码所示:
function my_theme_scripts_function() {
wp_enqueue_script( 'myscript', get_stylesheet_directory_uri().'/myconfortplus/js/toolbar-min.js');
}
add_action('wp_enqueue_scripts','my_theme_scripts_function');
但是当我进入我的网站时,confort +按钮不存在,并且在控制台上出现以下错误:
toolbar-min.js:4 Uncaught TypeError: Cannot read property 'appendChild' of undefined
at new UciStorage (toolbar-min.js:4)
at Object.start (toolbar-min.js:20)
at toolbar-min.js:20
您能帮我吗?