Skip to content

Instantly share code, notes, and snippets.

@Dinamiko
Created November 21, 2015 11:52
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 Dinamiko/3fc593db18214d0e4155 to your computer and use it in GitHub Desktop.
Save Dinamiko/3fc593db18214d0e4155 to your computer and use it in GitHub Desktop.
<?php
/**
* Example changing wp query arguments for the generated PDF
* $args = array( 'p' => $pdf, 'post_type' => $post_type, 'post_status' => 'publish' );
*/
function changing_dkpdf_query_args( $args ) {
$args['p'] = 1710;
$args['post_type'] = 'doc';
return $args;
}
add_filter( 'dkpdf_query_args', 'changing_dkpdf_query_args' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment