<?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>&#60;SourceBench/&#62; Your place to share code stuff &#187; p2</title>
	<atom:link href="http://sourcebench.com/tag/p2/feed/" rel="self" type="application/rss+xml" />
	<link>http://sourcebench.com</link>
	<description></description>
	<lastBuildDate>Tue, 04 May 2010 07:57:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Always expand threads in single views with p2theme</title>
		<link>http://sourcebench.com/languages/wordpress/always-expand-threads-in-single-views-with-p2theme/</link>
		<comments>http://sourcebench.com/languages/wordpress/always-expand-threads-in-single-views-with-p2theme/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 15:02:06 +0000</pubDate>
		<dc:creator>The SourceBench</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[comment]]></category>
		<category><![CDATA[expand]]></category>
		<category><![CDATA[p2]]></category>
		<category><![CDATA[p2theme]]></category>
		<category><![CDATA[thread]]></category>
		<category><![CDATA[toggle]]></category>

		<guid isPermaLink="false">http://sourcebench.com/languages/wordpress/always-expand-threads-in-single-views-with-p2theme/</guid>
		<description><![CDATA[// as on this page i wanted to have comment threads only collapsed
// on category/frontpage and search views but expanded on views with is_single()
// to do so open the file in/js.php in your p2 theme and search for p2_toggle_threads
// and replace $hide_threads = get_option( 'p2_hide_threads' ); ?&#62; with

	if ( !is_single() )
		$hide_threads = get_option( 'p2_hide_threads' );
	else
		$hide_threads [...]]]></description>
			<content:encoded><![CDATA[<pre class="brush: php;">// as on this page i wanted to have comment threads only collapsed
// on category/frontpage and search views but expanded on views with is_single()
// to do so open the file in/js.php in your p2 theme and search for p2_toggle_threads
// and replace $hide_threads = get_option( 'p2_hide_threads' ); ?&gt; with

	if ( !is_single() )
		$hide_threads = get_option( 'p2_hide_threads' );
	else
		$hide_threads = 0; ?&gt;</pre>]]></content:encoded>
			<wfw:commentRss>http://sourcebench.com/languages/wordpress/always-expand-threads-in-single-views-with-p2theme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Make links in P2 quotes clickable</title>
		<link>http://sourcebench.com/languages/wordpress/make-links-in-p2-quotes-clickable/</link>
		<comments>http://sourcebench.com/languages/wordpress/make-links-in-p2-quotes-clickable/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 14:55:51 +0000</pubDate>
		<dc:creator>The SourceBench</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[clickable]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[p2]]></category>
		<category><![CDATA[p2theme]]></category>

		<guid isPermaLink="false">http://sourcebench.com/languages/wordpress/make-links-in-p2-quotes-clickable/</guid>
		<description><![CDATA[// by default links in p2 quotes are not clickable. to make them clickable simply add the following to your functions.php
add_filter( 'p2_get_quote_content', 'make_clickable' );]]></description>
			<content:encoded><![CDATA[<pre class="brush: php;">// by default links in p2 quotes are not clickable. to make them clickable simply add the following to your functions.php
add_filter( 'p2_get_quote_content', 'make_clickable' );</pre>]]></content:encoded>
			<wfw:commentRss>http://sourcebench.com/languages/wordpress/make-links-in-p2-quotes-clickable/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
