我在我的 wordpress 主题中加载了lessphp - 这是一个完全自定义的 - 但我不明白为什么它不能正确链接 .less 文件。
更清楚的是,当前的路径是:
path:(themefolder/lessphp/lessc.inc.php)
path:(themefolder/lessphp/input.less) hemmm not working! yeaaa!
path:(themefolder/lessphp/output.css) hemmm not working!
ps. for now, I am in wamp localhost.
入头:
<?php
//$inputPath = get_bloginfo("template_url")."/lessphp/input.less";
require "lessphp/lessc.inc.php";
$less = new lessc;
$less->checkedCompile("lessphp/input.less", "lessphp/output.css");
?>
当然,在写作之前,我阅读并做了所有事情,但是什么也没有,我仍然不明白......
php错误是:
致命错误:在线 C:\Server\www\shape\wp-content\themes\shape\lessphp\lessc.inc.php 中未捕获的异常 'Exception' 和消息 'load error: failed to find lessphp/input.less' 1818
我能怎么做??
而且,是否可以更改经典路径?
谢谢你。