WordPress.org

Codex

Interested in functions, hooks, classes, or methods? Check out the new WordPress Code Reference!

Function Reference/trackback url

Description

Displays or returns the trackback URL for the current post. This tag must be within The Loop.

A trackback URL is where somebody posts a link to their site on your site. In return, they have posted a link to your site on their site and have copied an article you have written.

Usage

 <?php trackback_url(); ?> 

Parameters

This tag has no parameters.

Example

<p>Trackback URL for this post: <?php trackback_url(); ?></p>

Notes

Uses: get_trackback_url()

Change Log

Since: 0.71

Source File

trackback_url() is located in wp-includes/comment-template.php.

Related

pingback

See also index of Function Reference and index of Template Tags.