我需要重写函数get_cancel_comment_reply_link
或cancel_comment_reply_link
中定义的
wp-includes/comment-template.php
中未列出这些功能
pluggable.php
.
How can I override them from my theme\'s functions.php
?
我试过了
remove_filter(\'get_cancel_comment_reply_link\', \'cancel_comment_reply_link\');
add_filter(\'get_cancel_comment_reply_link\', function($text=\'\') { return \'\'; }, 1, 1);
没有成功。
最合适的回答,由SO网友:xavier bs 整理而成
如果你看函数的结尾get_cancel_comment_reply_link( $text = \'\' )
在文件中wp-includes/comment-template.php
, 你看到过滤器了吗cancel_comment_reply_link
.
return apply_filters( \'cancel_comment_reply_link\', $formatted_link, $link, $text );
这可能有用。