Skip to content

Instantly share code, notes, and snippets.

@Dinamiko
Created June 25, 2017 10:53
Show Gist options
  • Save Dinamiko/2bd89d842fb7d0272b87d687362ce352 to your computer and use it in GitHub Desktop.
Save Dinamiko/2bd89d842fb7d0272b87d687362ce352 to your computer and use it in GitHub Desktop.
<?php
function custom_dkpdf_pdf_filename( $filename ) {
$current_user = wp_get_current_user();
$filename = $current_user->display_name.' '.get_the_title();
return $filename;
}
add_filter( 'dkpdf_pdf_filename', 'custom_dkpdf_pdf_filename' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment