Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Dinamiko/b368196b17c8583085f4 to your computer and use it in GitHub Desktop.
Save Dinamiko/b368196b17c8583085f4 to your computer and use it in GitHub Desktop.
<?php
function custom_dkpdf_before_content() {
$output = '<div style="margin-bottom:25px;width:100%;background:#CCC;">Before content text</div>';
return $output;
}
add_filter( 'dkpdf_before_content', 'custom_dkpdf_before_content' );
function custom_dkpdf_after_content() {
$output = '<div style="margin-top:25px;width:100%;background:#CCC;">After content text</div>';
return $output;
}
add_filter( 'dkpdf_after_content', 'custom_dkpdf_after_content' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment