<?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>Developing Thematic 4 You</title>
	<atom:link href="http://developing.thematic4you.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://developing.thematic4you.com</link>
	<description>Everything around the Thematic Core</description>
	<lastBuildDate>Sat, 04 Dec 2010 17:50:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Breaking things to fix others</title>
		<link>http://developing.thematic4you.com/2010/04/breaking-things-to-fix-others/</link>
		<comments>http://developing.thematic4you.com/2010/04/breaking-things-to-fix-others/#comments</comments>
		<pubDate>Sat, 24 Apr 2010 16:13:09 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Fixed]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://developing.thematic4you.com/?p=37</guid>
		<description><![CDATA[I know, that I promised not to break existing child themes with future versions of Thematic. But sometimes it is necessary to break things 'cause we need to fix others.]]></description>
			<content:encoded><![CDATA[<p>I know, that I promised not to break existing child themes with future versions of Thematic. But sometimes it is necessary to break things &#8217;cause we need to fix others.</p>
<p>With the last revision I fixed an issue, where <code>wp_page_menu()</code> got the class <code>sf-menu</code> permanently. Plugin and Widget Developers suffered from headaches because of that. To get rid of this issue I had to change the way Thematic called <code>wp_page_menu()</code>.</p>
<p>The old call:
<pre class="brush: php; title: ; notranslate">wp_page_menu('sort_column=menu_order')</pre>
<p>And the new call:
<pre class="brush: php; title: ; notranslate">echo thematic_add_menuclass(wp_page_menu(thematic_page_menu_args()));</pre>
<p>The parameter <code>echo</code> changed from <code>TRUE</code> to <code>FALSE</code>.</p>
<p>If you use the standard procedure as described in the sample child theme to add a &#8216;Home&#8217;-link to your menu, your menu will come up without any styling. To fix this behavior you need to remove the parameter <code>echo</code> from your function. It should look like this to work with the latest SVN revision:</p>
<pre class="brush: php; title: ; notranslate">function childtheme_menu_args($args) {
	$args = array(
		'show_home' =&gt; 'Home',
		'sort_column' =&gt; 'menu_order',
		'menu_class' =&gt; 'menu',
		'echo' =&gt; false
	);
	return $args;
}
add_filter('wp_page_menu_args','childtheme_menu_args', 20);
</pre>
<p>If you use <code>wp_page_menu()</code> in other locations than the header and you need Superfish, make sure that you use the above mentioned call
<pre class="brush: php; title: ; notranslate">echo thematic_add_menuclass(wp_page_menu(thematic_page_menu_args()));</pre>
]]></content:encoded>
			<wfw:commentRss>http://developing.thematic4you.com/2010/04/breaking-things-to-fix-others/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Thematic Revision 653</title>
		<link>http://developing.thematic4you.com/2010/04/thematic-revision-653/</link>
		<comments>http://developing.thematic4you.com/2010/04/thematic-revision-653/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 13:47:49 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Experimental]]></category>
		<category><![CDATA[WordPress 3.0]]></category>
		<category><![CDATA[wp_nav_menu]]></category>

		<guid isPermaLink="false">http://developing.thematic4you.com/?p=34</guid>
		<description><![CDATA[ADDED some experimental code to support 'wp_nav_menu()'. A child theme running under WordPress 3.0 will use <code>wp_page_menu()</code> by default.
]]></description>
			<content:encoded><![CDATA[<p>ADDED some experimental code. A child theme running under WordPress 3.0 will use <code>wp_page_menu()</code> by default.</p>
<p>To switch the menu to <code>wp_nav_menu()</code> use the following PHP snippet in your child theme&#8217;s functions.php:</p>
<pre class="brush: php; title: ; notranslate">function change_menu_type() {
	return 'wp_nav_menu';
}
add_filter('thematic_menu_type', 'change_menu_type');
</pre>
]]></content:encoded>
			<wfw:commentRss>http://developing.thematic4you.com/2010/04/thematic-revision-653/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Thematic Revision 652</title>
		<link>http://developing.thematic4you.com/2010/04/thematic-revision-652/</link>
		<comments>http://developing.thematic4you.com/2010/04/thematic-revision-652/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 12:14:37 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Added]]></category>
		<category><![CDATA[Fixed]]></category>
		<category><![CDATA[Filter]]></category>
		<category><![CDATA[wp_page_menu()]]></category>

		<guid isPermaLink="false">http://developing.thematic4you.com/?p=32</guid>
		<description><![CDATA[ADDED: New filter 'thematic_page_menu_args' to filter the arguments for 'wp_page_menu()'.
FIXED: The UL Class 'sf-menu' will be created only for the 'wp_page_menu()' in the header.]]></description>
			<content:encoded><![CDATA[<p>ADDED:<br />
- New filter <code>thematic_page_menu_args</code> to filter the arguments for <code>wp_page_menu()</code>.<br />
FIXED:<br />
- The UL Class <code>sf-menu</code> will be created only for the <code>wp_page_menu()</code> in the header.</p>
]]></content:encoded>
			<wfw:commentRss>http://developing.thematic4you.com/2010/04/thematic-revision-652/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Thematic Revision 651</title>
		<link>http://developing.thematic4you.com/2010/04/thematic-revision-651/</link>
		<comments>http://developing.thematic4you.com/2010/04/thematic-revision-651/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 10:48:30 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Added]]></category>
		<category><![CDATA[Filter]]></category>
		<category><![CDATA[Superfish]]></category>

		<guid isPermaLink="false">http://developing.thematic4you.com/?p=30</guid>
		<description><![CDATA[ADDED: New filter 'thematic_use_superfish' to prevent the use of Superfish for the menu.]]></description>
			<content:encoded><![CDATA[<p>ADDED:<br />
- New filter <code>thematic_use_superfish</code> to prevent the use of Superfish for the menu.</p>
]]></content:encoded>
			<wfw:commentRss>http://developing.thematic4you.com/2010/04/thematic-revision-651/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thematic Revision 650</title>
		<link>http://developing.thematic4you.com/2010/04/thematic-revision-650/</link>
		<comments>http://developing.thematic4you.com/2010/04/thematic-revision-650/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 14:46:32 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Added]]></category>
		<category><![CDATA[Blog ID]]></category>
		<category><![CDATA[BODY class]]></category>

		<guid isPermaLink="false">http://developing.thematic4you.com/?p=22</guid>
		<description><![CDATA[ADDED: New BODY class 'blogid-n' and new filter 'thematic_show_bc_blogid' to prevent this BODY class.]]></description>
			<content:encoded><![CDATA[<p>ADDED:<br />
- New BODY class <code>blogid-n</code>.<br />
- New filter <code>thematic_show_bc_blogid</code> to prevent the BODY class <code>blogid-n</code>.</p>
]]></content:encoded>
			<wfw:commentRss>http://developing.thematic4you.com/2010/04/thematic-revision-650/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Thematic Revision 644</title>
		<link>http://developing.thematic4you.com/2010/03/thematic-revision-644/</link>
		<comments>http://developing.thematic4you.com/2010/03/thematic-revision-644/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 19:40:28 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Added]]></category>
		<category><![CDATA[Theme options]]></category>

		<guid isPermaLink="false">http://developing.thematic4you.com/?p=14</guid>
		<description><![CDATA[ADDED: Theme options support WordPress mu and WordPress 3.0 Multi-User option.]]></description>
			<content:encoded><![CDATA[<p>ADDED: Theme options support WordPress mu and WordPress 3.0 Multi-User option.</p>
]]></content:encoded>
			<wfw:commentRss>http://developing.thematic4you.com/2010/03/thematic-revision-644/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thematic Revision 643</title>
		<link>http://developing.thematic4you.com/2010/03/thematic-revision-643/</link>
		<comments>http://developing.thematic4you.com/2010/03/thematic-revision-643/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 14:10:11 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Fixed]]></category>
		<category><![CDATA[Widget Area]]></category>

		<guid isPermaLink="false">http://developing.thematic4you.com/?p=12</guid>
		<description><![CDATA[FIXED: Widget areas can now be moved based on a conditional tag.]]></description>
			<content:encoded><![CDATA[<p>FIXED: Widget areas can now be moved based on a conditional tag.</p>
]]></content:encoded>
			<wfw:commentRss>http://developing.thematic4you.com/2010/03/thematic-revision-643/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thematic Revision 642</title>
		<link>http://developing.thematic4you.com/2010/03/thematic-revision-642/</link>
		<comments>http://developing.thematic4you.com/2010/03/thematic-revision-642/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 13:24:28 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Fixed]]></category>
		<category><![CDATA[Widgets]]></category>

		<guid isPermaLink="false">http://developing.thematic4you.com/?p=10</guid>
		<description><![CDATA[FIXED: Removed <code>thematic_before_widget()</code> and <code>thematic_after_widget()</code> from Search widget.]]></description>
			<content:encoded><![CDATA[<p>FIXED: Removed <code>thematic_before_widget()</code> and <code>thematic_after_widget()</code> from Search widget.</p>
]]></content:encoded>
			<wfw:commentRss>http://developing.thematic4you.com/2010/03/thematic-revision-642/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thematic Revision 641</title>
		<link>http://developing.thematic4you.com/2010/03/thematic-revision-641/</link>
		<comments>http://developing.thematic4you.com/2010/03/thematic-revision-641/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 09:25:22 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Updated]]></category>
		<category><![CDATA[language files]]></category>

		<guid isPermaLink="false">http://developing.thematic4you.com/?p=8</guid>
		<description><![CDATA[UPDATED: Norwegian language files

Credits: <a title="Thomas Misund" href="http://hemmeligadresse.com/">Thomas Misund</a>]]></description>
			<content:encoded><![CDATA[<p>UPDATED: Norwegian language files</p>
<p>Credits: <a title="Thomas Misund" href="http://hemmeligadresse.com/">Thomas Misund</a></p>
]]></content:encoded>
			<wfw:commentRss>http://developing.thematic4you.com/2010/03/thematic-revision-641/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

