我希望能够将html页面导出为PDF。我下载了TCPDF (主要是因为它允许我保存高分辨率图像并缩小文件大小。)TCPDF文件夹位于我的主题文件夹中。
如果用户单击某个页面中的链接,则当前页面应保存为PDF。
该链接包含传递页面ID的元素。
<a href="<?php get_bloginfo(\'template_directory\')?>/tcpdf/export/export_pdf.php?id=<?php echo $id; ?>">Click here to PDF this page</a>
在
export_pdf.php
我使用的文件
$id = $_GET[\'id\']
从URL检索ID。用我想要的ID
get_post_meta($id);
就像这样,但它给了我以下错误:
Fatal error: Call to undefined function get_post_meta() in...
我使用get\\u post\\u meta从循环外部检索数据,但我认为我错了:-)
这是我在TCPDF中用来编写HTML的代码:
global $post;
$id = $_GET[\'id\'];
$review = get_post_meta($id);
$thispost = get_post( $review );
$content = $thispost->post_content;
$content;
// output the HTML content
$pdf->writeHTML($content, true, false, true, false, \'\');
我希望有人能帮我。