尝试在WordPress自定义php文件中包含wkhtmltopdf时出现错误

时间:2018-12-27 09:57:56

标签: php wordpress wkhtmltopdf

如何解决在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);

1 个答案:

答案 0 :(得分:0)

您使用了错误的函数来获取phpwkhtmltopdf库的路径。

来自the documentation

  

检索当前主题/子主题的样式表目录URI。

     

(...)

     

如果要在PHP中包含本地文件,请改用get_stylesheet_directory()

(重点是我)