我想获取在WP All Import期间更改(创建/更新)价格_regular_price
或_sale_price
的产品ID,并在pmxi_after_xml_import
功能中使用它们。
使用pmxi_saved_post
或pmxi_update_post_meta
钩子编译我自己的列表并将产品ID保存在set_transient
或wp_options
中是一个好主意,以便我可以访问在导入后功能中列出?
能给我一些建议吗?一点点代码将不胜感激。
add_action( 'pmxi_saved_post', 'save_imported_ids', 10, 3 );
function save_imported_ids( $post_id ) {
set_transient( 'imported_ids', $post_id, 3600 );
}