<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>threaded &#8211; Thesis Docs</title>
	<atom:link href="https://diythemes.com/thesis/rtfm/tag/threaded/feed/" rel="self" type="application/rss+xml" />
	<link>https://diythemes.com/thesis/rtfm</link>
	<description>Documentation, How-tos, and Best Practices for the Thesis WordPress Theme System</description>
	<lastBuildDate>Wed, 08 Nov 2017 15:25:56 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.1</generator>
	<item>
		<title>Customize &#034;Reply&#034; Text on Threaded Comments</title>
		<link>https://diythemes.com/thesis/rtfm/customize-reply-text-threaded-comments/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Tue, 06 Oct 2009 13:42:47 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[Comments]]></category>
		<category><![CDATA[reply]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[threaded]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=506</guid>

					<description><![CDATA[How to customize the text which displays for each Reply link when using threaded comments.]]></description>
										<content:encoded><![CDATA[<p>Place this code in <code>custom_functions.php</code>:</p>
<pre class="php">
function custom_comment_reply($content) {
	$content = str_replace('Reply', 'Reply to this comment', $content);
	return $content;
}
add_filter('comment_reply_link', 'custom_comment_reply');
</pre>
<p>(You can change <em>Reply to this comment</em> to be the specific text you want to use for each reply link.)</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Style Threaded Comments</title>
		<link>https://diythemes.com/thesis/rtfm/style-threaded-comments/</link>
		
		<dc:creator><![CDATA[Shelley]]></dc:creator>
		<pubDate>Thu, 25 Jun 2009 12:27:27 +0000</pubDate>
				<category><![CDATA[Thesis 1 Documentation]]></category>
		<category><![CDATA[author]]></category>
		<category><![CDATA[children]]></category>
		<category><![CDATA[comments list]]></category>
		<category><![CDATA[nested]]></category>
		<category><![CDATA[threaded]]></category>
		<guid isPermaLink="false">https://diythemes.com/answers/?p=425</guid>

					<description><![CDATA[How to customize your threaded comment styles.]]></description>
										<content:encoded><![CDATA[<p>Place this code in <code>custom.css</code>:</p>
<pre class="css">
/* Re-style the author and children comments */
.custom dl#comment_list .bypostauthor { background: transparent; } /* Reset Thesis default */
.custom dl#comment_list dd { padding-top: 0; } /* Reset Thesis default */
.custom dl#comment_list dd,
   .custom dl#trackback_list dd { padding-left: 0; } /* Reset Thesis default */
.custom dl#comment_list dl dd .format_text { margin-bottom: 0; } /* Reset Thesis default */
.custom dl#comment_list dd div,
   .custom dl#trackback_list dd div { padding-left: 0.9em; }
.custom dl#comment_list dl dd div { padding-left: 1.5em; }
.custom dl#comment_list dt.bypostauthor,
   .custom dl#comment_list dd.bypostauthor>div { background: #E7F8FB none repeat scroll 0 0; }
.custom dl#comment_list dl.children { background: #FFF; padding-left: 1em; padding-top: 1em; }
.custom dl#comment_list dl.children dt { padding-top: 1em; }
.custom dl#comment_list p.reply { margin-bottom: 1em; }
</pre>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
