If you look at your theme’s template which displays the Trackback URL link, you’ll find something similar to this:
<a href="<?php trackback_url(); ?>">Trackback URL</a>
Just edit the template to display the URL outside of an anchor tag:
Trackback URL: <?php trackback_url(); ?>
Sorry I don’t understand. But thanks…
I am using the gila theme, maybe you could tell me what file to edit and where I could put the code. Thanks 🙂
Looking at Gila…you’ll want to edit single.php. There are two lines related to Trackbacks. Just before each, you’ll find the comments:
// Both Comments and Pings are open
and
// Only Pings are Open
Edit the lines right after each of these comments. You may need to perform some layout changes, since the design is aimed towards providing Trackbacks as links.
Hey that worked perfect!! Thanks for the help!