我尝试将PDF文件的副本保存到服务器上的文件夹中。以下链接提供了一个引力PDF教程:https://gravitypdf.com/documentation/v4/gfpdf_post_save_pdf/不幸的是,我无法使它工作。显然我不完全了解将代码放在何处以及如何调整参数
基本代码是: add_action('gfpdf_post_save_pdf',function($ pdf_path,$ filename,$ settings,$ entry,$ form){
/* Only move PDFs from form #2 */
if ( '2' == $form['id'] ) {
/* The directory we want to copy our PDF to */
$copy_to_dir = ABSPATH . 'PDFs/';
/* Ensure we get a unique filename for the directory we are copying to */
$filename = wp_unique_filename( $copy_to_dir, $filename );
/* Copy the PDF to the new directory */
copy( $pdf_path, $copy_to_dir . $filename );
}
},10,5);
希望获得帮助,谢谢