string rel="nofollow"
私はワードプレスのウェブサイトを持っており、特定の単語を含む特定のリンク (例: this-link) の直後に追加する必要があります。私はこの文字列を持っています:
a href="http://www.this-link-is.com/ANYTHING"
add rel="nofollow"
このリンクを含む各文字列の後に必要です。
a href="http://www.this-link-is.com/ANYTHING" rel="nofollow"
だからそれは次のようなものでなければなりません
update wp_posts set post_content = replace(post_content, '%this-link%>', '%this-link% rel="nofollow">');
どうすればこれを行うことができますか? ありがとうございました。