使用自定义布局将帖子转换为pdf

时间:2013-12-20 13:21:07

标签: php wordpress pdf

我正在使用wordpress,我想将我的帖子转换为pdf,就像在this website中一样(点击打印图标看看我的意思)。我希望在website中做类似的事情。你能和我分享一下如何做到这一点吗?感谢。

3 个答案:

答案 0 :(得分:0)

在这里试试这个wordpress插件(它可能就是你要找的)

http://wordpress.org/plugins/kalins-pdf-creation-station/

答案 1 :(得分:0)

我使用mPDF(www.mpdf1.com)如下:

(1)使用ob_start()

缓冲输出

(2)将所有输出收集到变量$ content = ob_getcontents()

(3)使用ob_flush()

刷新缓冲区以在屏幕上显示内容

(4)将PDF创建为文件

这样的事情:

// Buffer the output so I can collect the html
ob_start();

// Do the display bit here

....

// Collect into a variable and flush it out
$content = ob_get_contents();
ob_flush();

// Make a PDF
include "MPDF/mpdf.php";
$mpdf = new mPDF();

// Add some CSS to style content
$content = "<style>".file_get_contents("style.css").'</style>'.$content;

// Create PDF and save as file
$mpdf -> WriteHTML($content);
$mpdf -> Output('PDF/pdffile.pdf', 'F');

答案 2 :(得分:0)