我想从 Wordpress 帖子中的内容动态创建 PDF(下面稍微简化),其中一个div
称为“食谱”是我想要发送到DOMPDF(不是整个帖子)的内容:
<div class="post"> <div> <!-- some stuff I don't want in the PDF --> </div> <div class="recipe"> <?php more_fields('recipe-name'); ?> <?php more_fields('recipe-method'); ?> <a href="<?php /*something here that calls DOMPDF, delivers the contents of #recipe, and causes render and stream of PDF to browser.*/ ?>" class="print-recipe">Get a PDF of this recipe.</a> </div> </div>
以前从未使用过 PHP 库,我似乎只是想念如何做到这一点。文档在这里。提前感谢任何愿意提供帮助的人。