Download the PHP package voceconnect/voce-post-pdfs without Composer
On this page you can find all versions of the php package voceconnect/voce-post-pdfs. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download voceconnect/voce-post-pdfs
More information about voceconnect/voce-post-pdfs
Files in voceconnect/voce-post-pdfs
Package voce-post-pdfs
Short Description Generates PDF's from Posts
License GPL-2.0-or-later
Informations about the package voce-post-pdfs
Voce Post PDFs
Contributors: johnciacia, kevinlangleyjr, brockangelo
Tags: printing, pdf
Requires at least: 3.2
Tested up to: 3.8.3
Stable tag: 1.2.3
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
A WordPress plugin/module that generates a pdf from a post.
Description
This plugin generates a PDF file from a post's content using the PHP dompdf library. Simply link to the post + '/pdf/' and a PDF will be generated. You have the ability to customize the upload path, the PDF template that is used, and the filename format through filters.
Installation
As standard plugin:
See Installing Plugins.
As theme or plugin dependency:
After dropping the plugin into the containing theme or plugin, add the following:
Usage
Add a Download PDF link to /pdf/
:
Customize with filters
To modify the logo used in the PDF header:
Use your own template for the PDF, relative to the theme directory:
Modify query args:
Modify the default filename format (defaults to post-title.pdf):
Modify the upload location on the server:
Modify the url to the pdf:
Changelog
1.2.3
- Reducing calls to wp_uploads_dir for performance reasons
1.2.1
Reorganizing the path declarations and pdf existance check in save_post
to improve performace.
1.2
Adding a parameter to save_pdf
to not overwrite the PDF, if the PDF already exists. get_upload_basepath
and get_upload_baseurl
are now public, so other plugins can retrieve a PDF's location.