musisz użyć „lubię to”, aby znaleźć posty i indeks podciągów, aby usunąć niechciane treści
substring_index( substring_index(table.column, 'href=”', -1), '"',1)
wyodrębni twój link
mysql> SELECT REPLACE(table_column, substring_index( substring_index(table.column, 'href=”', -1), '"',1) , '');
to da ci tekst bez linku. Zostaniesz z
< a href=””>Test</a>
następnie wykonaj kolejną zamianę lub indeks podciągu, aby usunąć wszelkie niepożądane pozostałości.
na koniec uruchom go z odpowiednim filtrem, w którym:
UPDATE wp_posts SET post_content = REPLACE (
post_content,
'Item to replace here',
Replacement text here')
where mycolumn like "%dontneedthisdomain.com%"