Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 dokan 插件中进行一些自定义。我想知道供应商面板是否有可用于更新产品的挂钩。
添加输入字段后,您必须保存字段的值。在那个地方你必须使用do_action( 'dokan_new_product_added', $product_id, $post_data );这个钩子来保存字段数据。
do_action( 'dokan_new_product_added', $product_id, $post_data );
当您将编辑产品时,您必须使用do_action( 'dokan_product_updated', $post_id );重新保存。
do_action( 'dokan_product_updated', $post_id );