Description
Can be used to change the formatting of the comments link contained within p.to_comments; this link appears on index, archives, and other pages where multiple posts are listed.
Note that the default_skin_comments_link filter must be removed before adding a new filter to this function.
Example
// Changes the comment link to exclude brackets
function my_skin_comments_link($link) {
return "$link";
}
remove_filter('thesis_comments_link', 'default_skin_comments_link');
add_filter('thesis_comments_link', 'my_skin_comments_link');
History
- This filter was added in version 1.5.