pdf格式保存到服务器文件

时间:2018-07-28 10:04:35

标签: wordpress gravity-forms-plugin

我尝试将PDF文件的副本保存到服务器上的文件夹中。 以下link中有一份引力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 );

1 个答案:

答案 0 :(得分:0)

您需要将代码添加到functions.php

此外,您在代码中有错误,需要正确注释。将/* Only move PDFs from form #2 /更改为/* Only move PDFs from form #2 */