Override a function defined in wp-includes/comment-template.php
I need to override the function get_cancel_comment_reply_link
or cancel_comment_reply_link
that are defined in
wp-includes/comment-template.php
These functions are not listed in pluggable.php
.
How can I override them from my theme's functions.php
?
I tried
remove_filter('get_cancel_comment_reply_link', 'cancel_comment_reply_link');
add_filter('get_cancel_comment_reply_link', function($text='') { return ''; }, 1, 1);
without success.