Created
March 28, 2016 14:51
-
-
Save Dinamiko/b368196b17c8583085f4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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