<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>ThemeShaper Forums Tag: trackbacks</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Sun, 26 May 2013 08:53:42 +0000</pubDate>

<item>
<title>em hr on "changing output in entry-utility in Thematic 1.0"</title>
<link>http://themeshaper.com/forums/topic/changing-output-in-entry-utility-in-thematic-10#post-27443</link>
<pubDate>Sat, 30 Jun 2012 17:25:16 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">27443@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;onelittlemoose,&#60;/p&#62;
&#60;p&#62;Thanks for your patience. Your login on the new site should be sorted now :)
&#60;/p&#62;</description>
</item>
<item>
<title>onelittlemoose on "changing output in entry-utility in Thematic 1.0"</title>
<link>http://themeshaper.com/forums/topic/changing-output-in-entry-utility-in-thematic-10#post-27431</link>
<pubDate>Fri, 29 Jun 2012 21:17:33 +0000</pubDate>
<dc:creator>onelittlemoose</dc:creator>
<guid isPermaLink="false">27431@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks drec.  But hmmm, can't seem to register on the new forum. My confirmation page is blank.....
&#60;/p&#62;</description>
</item>
<item>
<title>d_rec on "changing output in entry-utility in Thematic 1.0"</title>
<link>http://themeshaper.com/forums/topic/changing-output-in-entry-utility-in-thematic-10#post-27430</link>
<pubDate>Fri, 29 Jun 2012 20:13:47 +0000</pubDate>
<dc:creator>d_rec</dc:creator>
<guid isPermaLink="false">27430@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Best Bet? Thematic has sort of moved so you might find asking this question here; &#60;a href=&#34;http://thematictheme.com/forums/&#34; rel=&#34;nofollow&#34;&#62;http://thematictheme.com/forums/&#60;/a&#62;&#60;br /&#62;
More beneficial.
&#60;/p&#62;</description>
</item>
<item>
<title>onelittlemoose on "changing output in entry-utility in Thematic 1.0"</title>
<link>http://themeshaper.com/forums/topic/changing-output-in-entry-utility-in-thematic-10#post-27429</link>
<pubDate>Fri, 29 Jun 2012 18:27:55 +0000</pubDate>
<dc:creator>onelittlemoose</dc:creator>
<guid isPermaLink="false">27429@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I had some custom code to remove &#34;trackbacks are closed but you can leave a comment&#34; that appears at the end of post. Updating to new Thematic 1.0+ has broken it, and it now ends with&#60;br /&#62;
&#34;This entry was posted in [category]. Bookmark the permalink. . Bookmark the permalink. Post a comment.&#34;&#60;br /&#62;
And when I am logged in, it gives me 2 edit links.&#60;br /&#62;
Here is my code:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;// OVERRIDING WHAT APPEARS IN THE POST FOOTER FOR CLOSED COMMENTS TRACKBACKS ETC
function childtheme_override_postfooter_postconnect() {
$postconnect = __(&#38;#39;. Bookmark the &#38;#39;, &#38;#39;thematic&#38;#39;) . &#38;#39;&#38;lt;a href=&#38;quot;&#38;#39; . apply_filters(&#38;#39;the_permalink&#38;#39;, get_permalink()) . &#38;#39;&#38;quot; title=&#38;quot;&#38;#39; . __(&#38;#39;Permalink to &#38;#39;, &#38;#39;thematic&#38;#39;) . the_title_attribute(&#38;#39;echo=0&#38;#39;) . &#38;#39;&#38;quot;&#38;gt;&#38;#39;;
 $postconnect .= __(&#38;#39;permalink&#38;#39;, &#38;#39;thematic&#38;#39;) . &#38;#39;&#38;lt;/a&#38;gt;.&#38;#39;;
if ((comments_open()) &#38;#38;&#38;#38; (pings_open())) { /* Comments are open */
$postconnect .= &#38;#39; &#38;lt;a class=&#38;quot;comment-link&#38;quot; href=&#38;quot;#respond&#38;quot; title =&#38;quot;&#38;#39; . __(&#38;#39;Post a comment&#38;#39;, &#38;#39;thematic&#38;#39;) . &#38;#39;&#38;quot;&#38;gt;&#38;#39; . __(&#38;#39;Post a comment&#38;#39;, &#38;#39;thematic&#38;#39;) . &#38;#39;&#38;lt;/a&#38;gt;&#38;#39;;
$postconnect .= __(&#38;#39; or leave a trackback: &#38;#39;, &#38;#39;thematic&#38;#39;);
$postconnect .= &#38;#39;&#38;lt;a class=&#38;quot;trackback-link&#38;quot; href=&#38;quot;&#38;#39; . get_trackback_url() . &#38;#39;&#38;quot; title =&#38;quot;&#38;#39; . __(&#38;#39;Trackback URL for your post&#38;#39;, &#38;#39;thematic&#38;#39;) . &#38;#39;&#38;quot; rel=&#38;quot;trackback&#38;quot;&#38;gt;&#38;#39; . __(&#38;#39;Trackback URL&#38;#39;, &#38;#39;thematic&#38;#39;) . &#38;#39;&#38;lt;/a&#38;gt;.&#38;#39;;
} elseif (!(comments_open()) &#38;#38;&#38;#38; (pings_open())) { /* Only trackbacks are open */
$postconnect .= __(&#38;#39; Comments are closed, but you can leave a trackback: &#38;#39;, &#38;#39;thematic&#38;#39;);
$postconnect .= &#38;#39;&#38;lt;a class=&#38;quot;trackback-link&#38;quot; href=&#38;quot;&#38;#39; . get_trackback_url() . &#38;#39;&#38;quot; title =&#38;quot;&#38;#39; . __(&#38;#39;Trackback URL for your post&#38;#39;, &#38;#39;thematic&#38;#39;) . &#38;#39;&#38;quot; rel=&#38;quot;trackback&#38;quot;&#38;gt;&#38;#39; . __(&#38;#39;Trackback URL&#38;#39;, &#38;#39;thematic&#38;#39;) . &#38;#39;&#38;lt;/a&#38;gt;.&#38;#39;;
} elseif ((comments_open()) &#38;#38;&#38;#38; !(pings_open())) { /* Only comments open */
/* CHANGED FROM THEMATIC ORIGINAL TO REMOVE Trackbacks are closed, but you can */
 $postconnect .= __(&#38;#39; &#38;#39;, &#38;#39;thematic&#38;#39;);
$postconnect .= &#38;#39;&#38;lt;a class=&#38;quot;comment-link&#38;quot; href=&#38;quot;#respond&#38;quot; title =&#38;quot;&#38;#39; . __(&#38;#39;Post a comment&#38;#39;, &#38;#39;thematic&#38;#39;) . &#38;#39;&#38;quot;&#38;gt;&#38;#39; . __(&#38;#39;Post a comment&#38;#39;, &#38;#39;thematic&#38;#39;) . &#38;#39;&#38;lt;/a&#38;gt;.&#38;#39;;
 } elseif (!(comments_open()) &#38;#38;&#38;#38; !(pings_open())) { /* Comments and trackbacks closed */
/* CHANGED FROM THEMATIC ORIGINAL TO REMOVE TEXT both trackbacks and comments are closed */
 $postconnect .= __(&#38;#39; &#38;#39;, &#38;#39;thematic&#38;#39;);
 }
// Display edit link on single posts
 if (current_user_can(&#38;#39;edit_posts&#38;#39;)) {
$postconnect .= &#38;#39; &#38;#39; . thematic_postfooter_posteditlink();
}
 return apply_filters(&#38;#39;childtheme_override_postfooter_postconnect&#38;#39;,$postconnect);
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I know this is quite clumsy, and obviously since it's broken in the new version, this was the wrong way to do it. As the trackbacks are closed for this particular site, I don't want a mention of trackbacks in the post footer. &#60;/p&#62;
&#60;p&#62;Anyone else run into this, or have any insights?  Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>Thompson on "Trackbacks deprecated?"</title>
<link>http://themeshaper.com/forums/topic/trackbacks-deprecated#post-20009</link>
<pubDate>Sat, 26 Mar 2011 22:30:14 +0000</pubDate>
<dc:creator>Thompson</dc:creator>
<guid isPermaLink="false">20009@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;I figured it out. There was one more setting beyond just Settings &#38;gt; Discussion that I didn't know about. If you go to the top right of the admin area, click 'screen options' &#38;gt; 'discussion', then you'll be able to see page-level settings to check to allow trackbacks/pingbacks. So then you'll be able to tick Yes to show trackback/pingbacks. So many settings in WP! :)
&#60;/p&#62;</description>
</item>
<item>
<title>Thompson on "Trackbacks deprecated?"</title>
<link>http://themeshaper.com/forums/topic/trackbacks-deprecated#post-20004</link>
<pubDate>Sat, 26 Mar 2011 20:35:26 +0000</pubDate>
<dc:creator>Thompson</dc:creator>
<guid isPermaLink="false">20004@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi, Does anyone know if Trackbacks are still used in WordPress or Thematic anymore? Or have they been deprecated?  &#60;/p&#62;
&#60;p&#62;I've tried testing to get a trackback to show in the comments by linking to and from my Thematic site from and to other WordPress sites. But trackbacks don't seem to be received or sent. So I'm curious, do they work for anyone else?
&#60;/p&#62;</description>
</item>
<item>
<title>Jose on "Custom trackback callback?"</title>
<link>http://themeshaper.com/forums/topic/custom-trackback-callback#post-16310</link>
<pubDate>Fri, 15 Oct 2010 01:00:05 +0000</pubDate>
<dc:creator>Jose</dc:creator>
<guid isPermaLink="false">16310@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Thanks for the input. I'll try to stick with css for the time being then.&#60;/p&#62;
&#60;p&#62;An over-ridable list_pings_arg() function would be nice though for future releases. ^^
&#60;/p&#62;</description>
</item>
<item>
<title>em hr on "Custom trackback callback?"</title>
<link>http://themeshaper.com/forums/topic/custom-trackback-callback#post-16305</link>
<pubDate>Thu, 14 Oct 2010 21:19:30 +0000</pubDate>
<dc:creator>em hr</dc:creator>
<guid isPermaLink="false">16305@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;The trackbacks callback is hard coded into the comments.php currently. I think we could use a filter or override for this also. For the time being you can copy the comments.php into your child theme and edit the callback to suit you. &#60;/p&#62;
&#60;p&#62;Look for:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php wp_list_comments(&#38;#39;type=pings&#38;#38;callback=thematic_pings&#38;#39;); ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;When we come up with an altyernartive I'll post a n update here.&#60;/p&#62;
&#60;p&#62;-Gene
&#60;/p&#62;</description>
</item>
<item>
<title>Jose on "Custom trackback callback?"</title>
<link>http://themeshaper.com/forums/topic/custom-trackback-callback#post-16303</link>
<pubDate>Thu, 14 Oct 2010 20:58:39 +0000</pubDate>
<dc:creator>Jose</dc:creator>
<guid isPermaLink="false">16303@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Bumping in case anyone know about this. :)
&#60;/p&#62;</description>
</item>
<item>
<title>Jose on "Custom trackback callback?"</title>
<link>http://themeshaper.com/forums/topic/custom-trackback-callback#post-16192</link>
<pubDate>Mon, 11 Oct 2010 18:15:35 +0000</pubDate>
<dc:creator>Jose</dc:creator>
<guid isPermaLink="false">16192@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;There's a &#60;code&#62;list_comments_arg()&#60;/code&#62; function (called in comments.php) that makes it possible to specify a custom callback in child themes, which allows a lot of customization in comments but with trackbacks there is not.&#60;/p&#62;
&#60;p&#62;This is how i specify a custom comments callback in my childtheme:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_list_comments_arg() {
	$content = &#38;#39;type=comment&#38;#38;callback=my_comments&#38;#39;;
	return $content;
}
add_filter(&#38;#39;list_comments_arg&#38;#39;,&#38;#39;childtheme_list_comments_arg&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Anyone knows if there is another way to overwrite the callback used for trackbacks or if the method i use for comments is not the best?&#60;/p&#62;
&#60;p&#62;Just to clarify i have no trouble at all editing comments, it's only trackback i don't know how to edit.&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>

</channel>
</rss>
