gpt4 book ai didi

sql - Wordpress 和 SQL : Adding a custom field to all posts

转载 作者:行者123 更新时间:2023-12-04 13:17:54 26 4
gpt4 key购买 nike

我需要一个可以在 PHPmyadmin 中运行的 SQL 查询,它向所有现有帖子添加一个自定义字段(带有一个值)。
任何人都可以帮忙吗?这甚至可能吗?

最佳答案

您可以通过使用posts 表上的选择查询插入postmeta 表来完成此操作。

在下面的示例中,我使用 wp_ 作为我的表前缀,您的设置可能会有所不同。

insert into wp_postmeta (post_id, meta_key, meta_value) 
select ID, 'my-key', 'my-value' from wp_posts where post_type = 'post';

关于sql - Wordpress 和 SQL : Adding a custom field to all posts,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3140198/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com