最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Where can I save plugin data?

programmeradmin2浏览0评论

I created a plugin which has a shortcode that displays a button in a form. I would like to track the button clicks with an onclick() script and save the amount of clicks to a meta field. I am just not sure where to save this data. I don't want this data to be saved to a posts meta field, as this isn't post specific. Should such data be saved to the wp-options table? What's the best way to do this?

Thanks!

I created a plugin which has a shortcode that displays a button in a form. I would like to track the button clicks with an onclick() script and save the amount of clicks to a meta field. I am just not sure where to save this data. I don't want this data to be saved to a posts meta field, as this isn't post specific. Should such data be saved to the wp-options table? What's the best way to do this?

Thanks!

Share Improve this question asked May 22, 2019 at 4:30 harveyharvey 2151 gold badge4 silver badges13 bronze badges 2
  • Depending on the amount of details you want to save, you could also create a table for it. – user167290 Commented May 22, 2019 at 6:29
  • Thanks for your input. I only need to save 2 pieces of data so I think wp-options should suffice. Please correct me if I'm wrong. – harvey Commented May 22, 2019 at 19:02
Add a comment  | 

1 Answer 1

Reset to default 1

If it's not post specific then it should be saved as an option in wp_options with add_option() or update_option().

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论