如何解决在WordPress的自定义文件中尝试包含phpwkhtmltopdf时出现的错误:
PHP致命错误:未捕获错误:在/wp-content/themes/default/custom/custom.php:4中找不到类'mikehaertl \ wkhtmlto \ Pdf'
这是我的PHP代码:
include_once(get_stylesheet_directory_uri()."/topdf/Pdf.php");
use mikehaertl\wkhtmlto\Pdf;
$pdf = new pdf();
var_dump($pdf);
答案 0 :(得分:0)
您使用了错误的函数来获取phpwkhtmltopdf库的路径。
检索当前主题/子主题的样式表目录URI。
(...)
如果要在PHP中包含本地文件,请改用get_stylesheet_directory()。
(重点是我)