screenshot of the link
嗨,我发布了数百种产品,并在woocommerce商店中提供了简短描述(产品摘录)中的链接。
现在想用一个新链接更新该链接。
哪个SQL是正确的?
UPDATE wp_posts SET post_content = REPLACE (post_content,‘href="http://xxx/about">Ordering</a>?‘,
‘href="http://xxxx/ordering guid">Ordering</a>?‘);
要么
UPDATE wp_posts SET post_excerpt = REPLACE (post_excerpt,‘href="http://xxx/about">Ordering</a>?‘,
‘href="http://xxx/ordering guid">Ordering</a>?‘);
还是什么?
最佳答案
您可以使用WP Database中的Search And Replace
任何东西。也许下面的脚本可以为您提供帮助。
这是链接Database Search and Replace Script in PHP
注意:该脚本仅适用于Wordpress
数据库。
关于mysql - MYSQL,对woocommerce单个商店页面的简短描述中的批处理更新新文本链接,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42466410/