<?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>MaisonBisson.com &#187; WordPress 2.6</title>
	<atom:link href="http://maisonbisson.com/blog/post/tag/wordpress-26/feed/" rel="self" type="application/rss+xml" />
	<link>http://maisonbisson.com</link>
	<description>A bunch of stuff I would have emailed you about.</description>
	<lastBuildDate>Sat, 14 Nov 2009 20:14:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WordPress 2.6 Notes</title>
		<link>http://maisonbisson.com/blog/post/12174/wordpress-26-notes/</link>
		<comments>http://maisonbisson.com/blog/post/12174/wordpress-26-notes/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 17:40:20 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[development notes]]></category>
		<category><![CDATA[new features]]></category>
		<category><![CDATA[updated]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[WordPress 2.6]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/blog/?p=12174</guid>
		<description><![CDATA[
WordPress 2.6 is out. It&#8217;s cool. Take a look:

I&#8217;m most excited about automatic tracking of changes to posts and pages, but I&#8217;ll also probably come to like the “Press This” feature:
if you click “Press This” from a Youtube page it’ll magically extract the video embed code, and if you do it from a Flickr page [...]]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-12174"><!-- &nbsp; --></abbr>
<p><a href="http://wordpress.org/development/2008/07/wordpress-26-tyner/" title="WordPress › Blog » WordPress 2.6">WordPress 2.6</a> is out. It&#8217;s cool. Take a look:</p>
<p><embed src="http://v.wordpress.com/mARhRBcT/fmt_std" type="application/x-shockwave-flash" width="400" height="250" flashvars="blog_domain=http://wordpress.org/development/2008/07/wordpress-26/&#038;width=400&#038;height=250"></embed></p>
<p>I&#8217;m most excited about automatic tracking of changes to posts and pages, but I&#8217;ll also probably come to like the “Press This” feature:</p>
<blockquote><p>if you click “Press This” from a Youtube page it’ll magically extract the video embed code, and if you do it from a Flickr page it’ll make it easy for you to put the image in your post.</p></blockquote>
<p>The theme previews are a great feature for MU users, and 2.6 now makes it easy to put captions on images.</p>
<p>In addition to the <a href="http://maisonbisson.com/blog/post/12172/wordpress-26-plugin-and-wp-configphp-path-changes" title="» WordPress 2.6 Plugin and wp-config.php Path Changes MaisonBisson.com">note yesterday</a> about the option to change the location of the <code>wp-content</code> directory and <code>wp-config.php</code> file, there are a number of new constants that developers may want to be aware of:</p>
<ul>
<li>WP_POST_REVISIONS</li>
<li>AUTOSAVE_INTERVAL</li>
<li>WP_CONTENT_URL</li>
<li>WP_CONTENT_DIR</li>
<li>WP_PLUGIN_DIR</li>
<li>FORCE_SSL_ADMIN</li>
<li>FORCE_SSL_LOGIN</li>
<li>SECURE_AUTH_KEY</li>
<li>AUTH_KEY</li>
<li>LOGGED_IN_KEY</li>
<li>WP_MEMORY_LIMIT</li>
</ul>
<p><a href="http://boren.nu/" title="Ryan Boren">Ryan Boren</a> posted a great <a href="http://boren.nu/archives/2008/07/14/ssl-and-cookies-in-wordpress-26/" title="» SSL and Cookies in WordPress 2.6 Ryan Boren">overview of changes to cookies</a> to improve security and accomodate the SSL features. In addition to paying attention to the new <code>wp-config.php</code> and and <code>/wp-content/</code> locations, I&#8217;ll need to be aware that SSL and the new, more secure cookies may also conflict with some sloppiness in my old code. I&#8217;ll need to <a href="http://codex.wordpress.org/Handling_POST_and_AJAX_Requests">be sure I&#8217;m using</a> <code>admin-post.php</code>, <code>admin-ajax.php</code>, and <code>options.php</code> where appropriate, rather than posting to my own files directly (this also eases the difficulty of people moving the wp-content directory around).</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/12174/wordpress-26-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.6 Plugin and wp-config.php Path Changes</title>
		<link>http://maisonbisson.com/blog/post/12172/wordpress-26-plugin-and-wp-configphp-path-changes/</link>
		<comments>http://maisonbisson.com/blog/post/12172/wordpress-26-plugin-and-wp-configphp-path-changes/#comments</comments>
		<pubDate>Mon, 14 Jul 2008 14:29:11 +0000</pubDate>
		<dc:creator>Casey Bisson</dc:creator>
				<category><![CDATA[Dispatches]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[paths]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[WordPress 2.6]]></category>
		<category><![CDATA[wp-content]]></category>

		<guid isPermaLink="false">http://maisonbisson.com/blog/?p=12172</guid>
		<description><![CDATA[
Ozh&#8217;s tutorial explains the details, but the short story is that we&#8217;ll soon get WP_CONTENT_URL and WP_CONTENT_DIR constants. And this is more than just convenience, 2.6 allows site admins to put those directories anywhere they want, so the constants will be the only reliable way of finding that info.
]]></description>
			<content:encoded><![CDATA[<abbr class="unapi-id" title="maisonbisson-12172"><!-- &nbsp; --></abbr>
<p><a href="http://planetozh.com/blog/2008/07/what-plugin-coders-must-know-about-wordpress-26/" title="What Plugin Coders Must Know About WordPress 2.6 « planetOzh">Ozh&#8217;s tutorial explains the details</a>, but the short story is that we&#8217;ll soon get <code>WP_CONTENT_URL</code> and <code>WP_CONTENT_DIR</code> constants. And this is more than just convenience, 2.6 allows site admins to put those directories anywhere they want, so the constants will be the only reliable way of finding that info.</p>
]]></content:encoded>
			<wfw:commentRss>http://maisonbisson.com/blog/post/12172/wordpress-26-plugin-and-wp-configphp-path-changes/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>