• Resolved marfirk

    (@marfirk)


    Hi,

    first of all: DK PDF is an awesome plugin. It does exactly, what I wanted it to do πŸ™‚
    Theres one tiny option, I’d like to add:
    Is it possible to generate PDFs from the preview of unpublished, but saved posts?
    Well, the plugin is already generating a pdf, BUT it only contains the post title and displays “no results”, where the content should be.

    Thanks,
    Martin

    https://wordpress.org/plugins/dk-pdf/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author dinamiko

    (@dinamiko)

    Hi marfirk, sorry for the delay,

    you can use dkpdf_query_args filter (more info here: http://wp.dinamiko.com/demos/dkpdf/doc/filters/) that allows changing parameters in the query. In your case you can change post_status to any, add this code in your theme functions.php file.

    <?php
    function changing_post_status_to_any( $args ) {
    	$args['post_status'] = 'any';
    	return $args;
    }
    add_filter( 'dkpdf_query_args', 'changing_post_status_to_any' );
    ?>

    Thanks.

    Thread Starter marfirk

    (@marfirk)

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Generate PDF from unpublished posts preview?’ is closed to new replies.