In a nutshell, TrackBack was designed to provide a method of notification between websites: it is a method of person A saying to person B, “This is something you may be interested in.” To do that, person A sends a TrackBack ping to person B. For more information read What is Trackback?. This plugin implements functionality to both send and receive trackbacks pings based on version 1.2 of the trackback specification.
| General Plugin info | |
|---|---|
| Current Version: | 2.1.1 |
| Download: | see here |
| Forum Thread: | http://forum.nucleuscms.org/viewtopic.php?p=76415 |
| Author: | Rakaz, mod by admun (Edmond Hui) and others |
These instructions are based on the default supplied with Nucleus 3.2. If you use a different skin, you may need to adjust the location where to insert the trackback variables.
First edit the Item Pages part of the skin (Admin menu → Skins, look for default skins section on the right column). Insert the code variable after the page header and just before the page content:
<%parsedinclude(header.inc)%> <!-- <%TrackBack(code)%> --> <!-- page content -->
This will add the RDF tag into the item which allows the software of other weblog authors to auto discover the trackback functionality of your weblog.
Next, go the the nucleus default/item template (Admin Menu → Templates, look at the right template) and add our list variable just below it. This will insert the list of current trackbacks below the article. This location is just a suggestion, if want to display the trackback list in a different location you can.
<div class="content"> <%item(default/item)%> </div> <%TrackBack(list)%> <div class="content">
Finally go to the default/index template and edit Item Body part of the template. Insert our count variable just after the nucleus comments variable.
</div> <%comments%> <%TrackBack(count)%> <%edit%> </div>
The Trackback plugin has the ability to autodetect trackback URLs as-you-type. Everytime you use a link to another weblog in your story, the plugin will contact that weblog and check if it accepts trackbacks. If it does, it will add it to the list of trackbacks on your 'Edit Item' page. Simply check the trackbacks you want to ping or if you want you can also manually specify an trackback URL.
In order to receive trackbacks you do not have to do anything, except for making the trackback URL known. You can do this by including one or more skin or template variables. It is also possible to include a list of the most recent trackbacks on every page by using a skin or template variable.
<%TrackBack(list)%><%TrackBack(code)%><%TrackBack(form)%><%form%> variable from the Footer field in the plugin settings and add the skinvar somewhere on your webpage.<%TrackBack(url)%><%action%> variable from the Footer field in the plugin settings and add the skinvar somewhere on your webpage. <%TrackBack(count)%><%TrackBack(pingformlink)%><%TrackBack(latest)%>For a complete changelog of all versions of the Trackback plugin, including versions older than 2.0 see the CHANGELOG.txt file included with the plugin package.
NP_Trackback version 2.1.1 works with Nucleus CMS 3.31 - 2007-10-29 admun