Skip to content

Instantly share code, notes, and snippets.

@greenhornet79
Last active September 4, 2015 13:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save greenhornet79/3d76ffa2834707379e73 to your computer and use it in GitHub Desktop.
Save greenhornet79/3d76ffa2834707379e73 to your computer and use it in GitHub Desktop.
Add watermark to Issue to PDF pages
<?php
add_action( 'issue_to_pdf_after_pdf_init', 'my_func_show_watermark', 10 );
function my_func_show_watermark( $mpdf ) {
$mpdf->SetWatermarkText('DRAFT');
$mpdf->showWatermarkText = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment