====== Trackping Separator ====== Trackping Separator, by its name, is a [[http://www.wordpress.org|WordPress]] Plugin that could separate trackbacks/pingbacks from user comments. Useful functions to list trackbacks are provided, but it requires heavy modification on the theme. As this is my first plugin, there may exists bugs and may be harmful to your WP. So if you have encountered any problems please contact me ASAP by sending or leave me a comment on my blog's [[http://mk.netgenes.org/my-plugins/tsp|TSP page]]. Thanks and enjoy! (And sorry, it's nothing related to Traveling Salesperson) ===== News ===== Attention: I had carelessly break the TSP plugin available for download. Thanks to Edrei Zahari who reports to me that it doesn't work, I fixed the file and it should have no problem at all. Sorry for the inconveniences caused. Trackping Separator 1.1.1 is out! Updates include an addition of %date parameter to listtrackback(), and WordPress 2.1 compatible (updated a few SQLs). Update is recommended. ===== Download ===== Download [[http://wordpress.org/extend/plugins/trackping-separator/|Trackping Separator]]. ===== Installation/Template setup ===== After activated your plugin, edit your template as follows: ==== archive.php, index.php, search.php ==== - Find the text ''comments_popup_link'', and change it into ''comments_only_popup_link''. The link will print out the number of comments only, not including trackbacks/pingbacks. - Add the following code next to the ''comments_popup_link'' (remember it's outside from the tags): Trackback/Pingback The output would be something similar to the one down below. This tag is quite similar to ''comments_popup_link()''. The first 4 parameters are the same, you could look at the description here. The difference is that this has an extra one, which decides whether number of total trackbacks and pingbacks (default), only trackbacks, or only pingpacks are shown. ==== comments.php ==== === Showing trackback/pingbacks === The old loop is gone, and the tag to replace it is: There are 2 parameters for this tag: The first is the type of links the tag would show. It could be either 'trackback' or 'pingback'. Leaving it empty would return both. So would show a list of trackbacks, and would show a list of pingbacks. The second parameter is a little bit more complex. The pattern parameter is used to define how links are shown. In fact it is some HTML with defined variables. Let's take a look with the default value:
  • %origin
    %content
  • You should notice there are some percentage sign, right? Those are the tags that are going to be replaced with loop variables. I'll explain them one by one: * %id - The ID of the trackback/pinbback. * %url - The URL of the trackback/pingback. * %origin - The name of the blog/article that trackback/pingbacks you. * %content - The excerpt of that article. * %date - The date of the trackback/pingback For common folks, this piece of code should works for you:

    Trackbacks/Pingbacks

    **NEW** There's a third parameter that user could specify the format of the date string. For reference, please visit [[http://codex.wordpress.org/Formatting_Date_and_Time|WordPress Codex]]. Oh, and by the way, if you wish to show the number of trackback/pingback of that post, use the following tag: And the final one would look like this:

    Trackbacks/Pingbacks

    === Eliminate trackpings being shown in your original comment list === Identify the comment loop in your comment.php. Before: ... After: ... Text in red are the lines need to be added by yourself. Expecting more steps? Sorry to disappoint you. Maybe move to your page and have a check to see if things works, alright? ===== FAQ ===== Q:How can I display the number of comments and number of trackback/pingbacks? A:To display number of comments only, paste the following code: To display trackback/pingbacks only, paste the following: Q:How can I display the date for each trackback/pingback? A:Use the variable %date in listtrackback() template function. There's an extra parameter for the function to specify the date format. For example, if you want to display the date in the trackping loop, the function call should be:
    %origin(%date)
    %content'); ?>
    ===== Version History ===== === Version 1.1.1 === * Bugfix/Feature: (Should be) WordPress 2.1 compatible, with reference to [[http://wordpress.org/development/2006/12/naughty-or-nice/|guidelines on WordPress Blog]] * Feature: Added date variable to listtrackpings() * Bugfix: comments_only_popup_link() and comments_only_number() updated === Version 1.1 === * Bugfix: Fixed/Updated the links * Feature: listrackpings() redesigned === Version 1.0.6a === * Bugfix: listtrackpings() function now generates XHTML 1.1 compatible code === Version 1.0.6 === (Don’t ever ask me where are 1.0.3 to 1.0.5! They are long gone! :P ) * Feature: Finally a link to the trackback section! * Bugfix: I finally dare to test with the listtrackpings() function, and got some bugs… Luckily it seems nobody uses it === Version 1.0.2 === * Feature: Could show either trackbacks or pingbacks separately, or both * Feature: listtrackpings() could help template dummies showing trackbacks/pingbacks in the article page === Version 1.0.1 === * Added: comments_only_popup_link() === Version 1.0.0 === * Initial release. For internal test use. [[Category:PHP]]