请帮我替换wordpress的urls / links中的单词,例如
如果我的文章中有内容 然后这个红色被橙色替换但是这个替换只应该在URL / Links中,如果Red写在文章的其他地方,它不应该被替换/
规则 - 如果是红色或绿色或粉红色将其替换为橙色 如果房间或厨房或餐厅由House代替 如果早餐或午餐或DInner用食物代替
这个改变应该是永久性的wordpress数据库 像这样我有10-15个规则要替换。 我需要一个脚本,以便在wordpress中使用
答案 0 :(得分:0)
<div class="text_div">
This div contains some text.
</div>
<script >
$(".text_div").text(function () {
return $(this).text().replace("contains", "hello everyone");
});
</script>
use this code for find and replace on your page or post