Description
Can be used to filter the link for each trackback.
This filter is passed a second parameter, $comment, which is the array defining the currently acted upon trackback, allowing you to use that information to customize even on a per-trackback level.
Example
function remove_trackback_permalink($text) {
$text = strip_tags($text);
$text = '<span>' . $text . '</span>';
return $text;
}
add_filter('thesis_trackback_link', 'remove_trackback_permalink');
History
- This filter was added in version 1.5.