通过 jquery 或 php 在 wordpress 中将 rel="nofollow" 添加到特定 link

add rel="nofollow" to Specific link by jquery or php in wordpress

我想通过 [= 将 rel="nofollow" 添加到 wordpress 站点中的特定 link(site.com) 26=]jquery

谢谢

试试这个jquery

$(function(){ 
$('a[href^="http://example.com/external/link"]').attr('rel','nofollow');
})