如何从 wordpress 中的 "cancel reply" 中删除 rel="nofollow"
How to remove the rel="nofollow" from "cancel reply" in wordpress
我正在使用这段代码,但没有得到结果,nofollow 仍然存在。
function remove_nofollowcancel($formatted_link, $link, $text){
return str_replace("rel='nofollow'", "", $formatted_link );
}
add_filter('cancel_comment_reply_link', 'remove_nofollowcancel', 10, 3);
你试过反引号吗?
return str_replace('rel="nofollow"', "", $formatted_link );
查看 get_cancel_comment_reply_link
的内部结构时,rel
属性使用双引号。
文档:https://developer.wordpress.org/reference/functions/get_cancel_comment_reply_link/
我正在使用这段代码,但没有得到结果,nofollow 仍然存在。
function remove_nofollowcancel($formatted_link, $link, $text){
return str_replace("rel='nofollow'", "", $formatted_link );
}
add_filter('cancel_comment_reply_link', 'remove_nofollowcancel', 10, 3);
你试过反引号吗?
return str_replace('rel="nofollow"', "", $formatted_link );
查看 get_cancel_comment_reply_link
的内部结构时,rel
属性使用双引号。
文档:https://developer.wordpress.org/reference/functions/get_cancel_comment_reply_link/