Description
Can be used to replace the comment edit link within span.edit_comment in the comment listing.
Note that the default_skin_edit_comment_link filter must be removed before adding a new filter to this function.
Example
/ Changes the comment edit link to exclude brackets
function my_skin_edit_comment_link($link) {
return "$link";
}
remove_filter('thesis_edit_comment_link', 'default_skin_edit_comment_link');
add_filter('thesis_edit_comment_link', 'my_skin_edit_comment_link');
History
- This filter was added in version 1.7.