本文介绍了WooCommerce 优惠券如何存储在数据库中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!
问题描述
每次我有新的注册时,我都需要运行一个脚本来检查我的优惠券,但我找不到优惠券生成器 (WooCommerce) 中优惠券的存储位置.
I need to run a script to check my coupons every time I have a new register, but I can't find where the coupons from coupon generator (WooCommerce) are stored.
推荐答案
WooCommerce 优惠券存储在
wp_posts
表中,post_type =>'shop_coupon'
.并且所有关联的数据都存储在wp_postmeta
表中.
WooCommerce Coupon are stored in
wp_posts
table withpost_type => 'shop_coupon'
. And all the associated data are stored inwp_postmeta
table.
您可以使用此 MySQL 查询来获取所有 Coupon:
You can use this MySQL query to get all the Coupon:
这会得到所有的优惠券
参考:MySQL Query to Get所有优惠券
这篇关于WooCommerce 优惠券如何存储在数据库中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!