在此示例中,style.css文件的内容未写入输出字符串。我做错了什么?
$openFile = get_theme_root() . "/" . get_template() . "/myfile.css";
$customcss = fopen($openFile, 'w');
$customcss.=file_get_contents(get_bloginfo('template_directory')."/styles/test/style.css");
fwrite($openFile, $customcss);
fclose($openFile);
答案 0 :(得分:1)
我看到以下错误:
在第2行,您将资源放入$customcss
(根据documentation)。然后你试图在它上面添加一个字符串(第3行),这是无意义的。所以,只需在第2行更改var。