Displaying trackback inside post
-
I am trying to display the trackback link so that it shows inside my post. I have trackbacks enabled within the options discussion section of WordPress but don’t find how you actually show the link itself for others to use within the post.
I found this section of code within my comments.php file within the theme directory of the theme I use. Is there anything I must do within the comments.php file to make the trackback link showup within each post.
Thanks for your help in advance.
Here is my blog: https://www.myebayadventure.com
<p class=”commentsfeed”>
<?php if ($post->ping_status == “open”) { ?>
<span class=”trackback”>“>Trackback URI</span> |
<?php } ?>
<?php if ($post-> comment_status == “open”) {?>
<span class=”feed”><?php comments_rss_link(‘Comments RSS’); ?></span>
<?php }; ?>
</p>
- The topic ‘Displaying trackback inside post’ is closed to new replies.