我正在使用mPDF创建PDF,目前我在WordPress中遇到图片问题。
我在wp-content/themes/mytheme/custom/
中有一个脚本,在wp-content/themes/mytheme/custom/images
中有图像。
现在我这样做:
$mpdf->setBasePath(get_stylesheet_directory().'/custom');
然后,我可以使用<img src="images/myimage.jpg"/>
引用图像,并且该图像有效。但是,现在我从数据库动态提取变量,这些值是绝对URL,例如https://example.com/wp-content/uploads/2018/11/myimage2.jpg
我现在如何在脚本中使用这些图像?即使我做了wp_make_link_relative
,我也得到了这个wp-content/uploads/2018/11/myimage2.jpg
,但是由于basePath设置为get_stylesheet_directory().'/custom
,所以该路径对我没有帮助。
有人知道我该怎么解决吗?
谢谢!