我在wordpress中自己创建一个主题。但突然我的functions.php文件停止工作。我正在列出样式表文件。第一次工作。但现在它不起作用。它出什么问题了? (我是wordpress的新手)我的代码是
Fragment
答案 0 :(得分:1)
您已将get_stylesheet_uri()
放在引号''
内,将其转换为字符串而不是函数调用......这应该有效:
<?php
function get_external_files(){
wp_enqueue_style('style', get_stylesheet_uri());
}
add_action('wp_enqueue_scripts', 'get_external_files');