Created
June 25, 2017 10:53
-
-
Save Dinamiko/2bd89d842fb7d0272b87d687362ce352 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_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