我正在从 csv 文件导入 woo-commerce (1000) 产品。可以选择下载图像并附加带有自定义字段的图像。
任何人都可以帮助导入 pdf 文件并在自定义文件中附加 pdf 吗?
请在下面找到图像导入部分的屏幕截图。我也尝试过使用 pdf 文件,但它不起作用。
我正在从 csv 文件导入 woo-commerce (1000) 产品。可以选择下载图像并附加带有自定义字段的图像。
任何人都可以帮助导入 pdf 文件并在自定义文件中附加 pdf 吗?
请在下面找到图像导入部分的屏幕截图。我也尝试过使用 pdf 文件,但它不起作用。
试试这个对我有用的方法:
function pdf_file_upload($post_id, $att_id, $file)
{
$attachment = get_attached_media('application/pdf', $post_id);
foreach($attachment as $attch):
$url = $attch->guid;
update_post_meta($post_id, "__document_file", $url);
endforeach;
}
add_action('pmxi_attachment_uploaded', 'pdf_file_upload', 10, 3);
在其他帖子选项部分中,您的 pdf 文件应在此 点击查看