Hi,
There's a list_comments_arg() function (called in comments.php) that makes it possible to specify a custom callback in child themes, which allows a lot of customization in comments but with trackbacks there is not.
This is how i specify a custom comments callback in my childtheme:
function childtheme_list_comments_arg() {
$content = 'type=comment&callback=my_comments';
return $content;
}
add_filter('list_comments_arg','childtheme_list_comments_arg');
Anyone knows if there is another way to overwrite the callback used for trackbacks or if the method i use for comments is not the best?
Just to clarify i have no trouble at all editing comments, it's only trackback i don't know how to edit.
Thanks!