您可以使用jQuery处理一些东西,而不是使用链接选项。尝试向主主题或插件javascript文件中添加类似的内容。(通常类似于main.js
.)
jQuery( document ).ready( function($) {
$( \'a[href^="https://google.com"], a[href^="https://yahoo.com"]\' ).each( function() {
$( this ).attr( \'rel\', \'nofollow\' );
} );
} );
对于任何其他URL,您只需继续添加
a[href^="https://domain.com"]
以逗号分隔的格式输入选择器。