<?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>WordPress Hacks &#187; WordPress 2.7</title>
	<atom:link href="http://wphacks.com/tag/wordpress-27/feed/" rel="self" type="application/rss+xml" />
	<link>http://wphacks.com</link>
	<description>WordPress Themes, Plugins, Hacks, Tutorials, and more!</description>
	<lastBuildDate>Thu, 02 Feb 2012 15:20:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Separating Trackbacks from Comments in WordPress 2.7+</title>
		<link>http://wphacks.com/separating-trackbacks-from-comments-in-wordpress-2-7/</link>
		<comments>http://wphacks.com/separating-trackbacks-from-comments-in-wordpress-2-7/#comments</comments>
		<pubDate>Sun, 16 Aug 2009 15:39:11 +0000</pubDate>
		<dc:creator>Kyle Eslick</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Seperating Trackbacks from Comments]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress 2.7]]></category>
		<category><![CDATA[WordPress Code]]></category>
		<category><![CDATA[WordPress Hacks]]></category>
		<category><![CDATA[WordPress How-To]]></category>

		<guid isPermaLink="false">http://wphacks.com/?p=2287</guid>
		<description><![CDATA[Back when WordPress 2.7 was released, the WordPress team introduced a completely revamped comment form that included integration of threaded comments into the core software, introducing some dramatic changes with how comments are handled.   Unfortunately, this change broke one of the most popular comment hacks, separating trackbacks from comments. Since then, several people have stepped [...]]]></description>
			<content:encoded><![CDATA[<p>Back when <a href="http://wphacks.com/wordpress-27-now-available-for-download/">WordPress 2.7 was released</a>, the WordPress team introduced a completely revamped comment form that included integration of threaded comments into the core software, introducing some dramatic changes with how comments are handled.   Unfortunately, this change broke one of the most popular comment hacks, <a href="http://wphacks.com/how-to-separate-wordpress-comments-and-trackbacks/">separating trackbacks from comments</a>.</p>
<p>Since then, several people have stepped up and shared some great hacks for separating trackbacks from comment in WordPress 2.7 or newer blogs .  So far the best guide I&#8217;ve found came from Sivel.net, which can be viewed <a href="http://sivel.net/2008/10/wp-27-comment-separation/">here</a>.  Click over and follow those steps get everything separated.</p>
<p><em>Note: The above guide is only for people using WordPress 2.7 or newer installations.  For people using WordPress 2.6 or earlier, you&#8217;ll want to use <a href="http://wphacks.com/how-to-separate-wordpress-comments-and-trackbacks/">this tutorial</a>.</em></p>
<p>Once you&#8217;ve got the comments successfully separated from the trackbacks, there are a couple additional tweaks you may want to do to clean up how things look (it really depends on preference I suppose).   The first is to clean up your trackbacks/pingbacks by only displaying the title instead of an excerpt and everything else.   In order to do this, you&#8217;ll need to find the following code in your comments.php file:</p>
<p><code>&lt;ol&gt;<br />
&lt;?php wp_list_comments('type=pings'); ?&gt;<br />
</code></p>
<p>Now <strong>replace</strong> that code with the following:</p>
<p><code>&lt;ol&gt;<br />
&lt;?php wp_list_comments('type=pings&amp;callback=list_pings'); ?&gt;<br />
</code></p>
<p>Lastly, you&#8217;ll need to add the following code to your functions.php file (which can be created if you don&#8217;t already have one):</p>
<p><code>&lt;?php<br />
function list_pings($comment, $args, $depth) {<br />
$GLOBALS['comment'] = $comment;<br />
?&gt;<br />
&lt;li id="comment-&lt;?php comment_ID(); ?&gt;"&gt;&lt;?php comment_author_link(); ?&gt;<br />
&lt;?php } ?&gt;<br />
</code></p>
<p>That should clean up the trackbacks/pingbacks section and you can also apply the same changes if you use a plugin to display tweetbacks.</p>
<p>The other thing you may want to do is fix the comment count to only show actual comments, filtering out the trackbacks/pingbacks which are included in your comment count by default.   Simply add the following code to your functions.php file (which again can be created if you don&#8217;t already have one):</p>
<p><code>&lt;?php<br />
add_filter('get_comments_number', 'comment_count', 0);<br />
function comment_count( $count ) {<br />
if ( ! is_admin() ) {<br />
global $id;<br />
$comments_by_type = &amp;separate_comments(get_comments('status=approve&amp;post_id=' . $id));<br />
return count($comments_by_type['comment']);<br />
} else {<br />
return $count;<br />
}<br />
}<br />
?&gt;<br />
</code></p>
<p>So there you go.  Anyone have any other tips for cleaning up your comment form?</p>
<img src="http://wphacks.com/?ak_action=api_record_view&id=2287&type=feed" alt="" /><p>You are reading <a href="http://wphacks.com/separating-trackbacks-from-comments-in-wordpress-2-7/">Separating Trackbacks from Comments in WordPress 2.7+</a>  © 2009 | <a href="http://wphacks.com">WordPress Hacks</a> | <a href="http://wpnexus.com">WordPress Directory</a> | <a href="http://wpforums.com/">WordPress Forums</a> | <a href="http://wpebook.com/">WordPress eBook</a></p>

<p><small>Enjoy writing about WordPress?  Get your blog more exposure by joining the <a href="http://wphacks.com/write/">WordPress Hacks writing team</a>!</small></p>]]></content:encoded>
			<wfw:commentRss>http://wphacks.com/separating-trackbacks-from-comments-in-wordpress-2-7/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>WordPress 2.7.1 Now Available</title>
		<link>http://wphacks.com/wordpress-271-now-available/</link>
		<comments>http://wphacks.com/wordpress-271-now-available/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 17:59:35 +0000</pubDate>
		<dc:creator>Kyle Eslick</dc:creator>
				<category><![CDATA[Releases]]></category>
		<category><![CDATA[WordPress 2.7]]></category>
		<category><![CDATA[WordPress 2.7.1]]></category>

		<guid isPermaLink="false">http://wphacks.com/?p=1777</guid>
		<description><![CDATA[I know this post is a little late and most of you have probably already noticed this in your WordPress dashboard already, but WordPress 2.7.1 is now available to download.  This update includes at least 68 bug fixes, so it is definitely worth making the upgrade. As this is the first update in the WordPress [...]]]></description>
			<content:encoded><![CDATA[<p>I know this post is a little late and most of you have probably already noticed this in your WordPress dashboard already, but WordPress 2.7.1 is now available to download.  This update includes at least 68 bug fixes, so it is definitely worth making the upgrade.</p>
<p>As this is the first update in the WordPress 2.7.1 branch, I just wanted to make sure everyone knows that you can now easily upgrade from within your dashboard by going to <strong>Tools &#8211;&gt; Upgrade</strong>.  Those of you waiting to upgrade to the WordPress 2.7.x branch until the first update was available will still need to upgrade manually.</p>
<img src="http://wphacks.com/?ak_action=api_record_view&id=1777&type=feed" alt="" /><p>You are reading <a href="http://wphacks.com/wordpress-271-now-available/">WordPress 2.7.1 Now Available</a>  © 2009 | <a href="http://wphacks.com">WordPress Hacks</a> | <a href="http://wpnexus.com">WordPress Directory</a> | <a href="http://wpforums.com/">WordPress Forums</a> | <a href="http://wpebook.com/">WordPress eBook</a></p>

<p><small>Enjoy writing about WordPress?  Get your blog more exposure by joining the <a href="http://wphacks.com/write/">WordPress Hacks writing team</a>!</small></p>]]></content:encoded>
			<wfw:commentRss>http://wphacks.com/wordpress-271-now-available/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Still No WordPress 2.7.1</title>
		<link>http://wphacks.com/still-no-wordpress-271/</link>
		<comments>http://wphacks.com/still-no-wordpress-271/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 21:19:59 +0000</pubDate>
		<dc:creator>Kyle Eslick</dc:creator>
				<category><![CDATA[Releases]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress 2.7]]></category>

		<guid isPermaLink="false">http://wphacks.com/?p=1652</guid>
		<description><![CDATA[Okay, so the title is a little misleading, but I wasn&#8217;t really sure how to title this post.    What I wanted to do was write a quick post to congratulate the WordPress team on the great success that has been WordPress 2.7 launch! In case you haven&#8217;t noticed, we are coming up on 2 full [...]]]></description>
			<content:encoded><![CDATA[<p>Okay, so the title is a little misleading, but I wasn&#8217;t really sure how to title this post.    What I wanted to do was write a quick post to congratulate the WordPress team on the great success that has been WordPress 2.7 launch!</p>
<p>In case you haven&#8217;t noticed, we are coming up on 2 full months now since the <a href="http://wphacks.com/wordpress-27-now-available-for-download/">release of WordPress 2.7</a>  and there hasn&#8217;t been a WordPress 2.7.1 release yet, which shows that everything was well tested prior to the official launch.  </p>
<p>For those of you that have been with WordPress for a few years or so, I imagine you&#8217;ll appreciate this accomplishment the most.   I remember getting to the 2.x.7 or higher releases with most WordPress branches and I think at least once we got to double digits before the next major release?  </p>
<p>Out of curiosity, for those of you that traditionally like to wait until the first security patch is released to upgrade to the next major branch, have you already upgraded or are you still waiting to experience WordPress 2.7?</p>
<img src="http://wphacks.com/?ak_action=api_record_view&id=1652&type=feed" alt="" /><p>You are reading <a href="http://wphacks.com/still-no-wordpress-271/">Still No WordPress 2.7.1</a>  © 2009 | <a href="http://wphacks.com">WordPress Hacks</a> | <a href="http://wpnexus.com">WordPress Directory</a> | <a href="http://wpforums.com/">WordPress Forums</a> | <a href="http://wpebook.com/">WordPress eBook</a></p>

<p><small>Enjoy writing about WordPress?  Get your blog more exposure by joining the <a href="http://wphacks.com/write/">WordPress Hacks writing team</a>!</small></p>]]></content:encoded>
			<wfw:commentRss>http://wphacks.com/still-no-wordpress-271/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>Warning: WordPress 2.7 Comment Pagination Creates Duplicate Content</title>
		<link>http://wphacks.com/warning-wordpress-27-comment-pagination-creates-duplicate-content/</link>
		<comments>http://wphacks.com/warning-wordpress-27-comment-pagination-creates-duplicate-content/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 08:00:21 +0000</pubDate>
		<dc:creator>Kyle Eslick</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Duplicate Content]]></category>
		<category><![CDATA[WordPress 2.7]]></category>
		<category><![CDATA[WordPress Comments]]></category>
		<category><![CDATA[WordPress Features]]></category>
		<category><![CDATA[WordPress SEO]]></category>

		<guid isPermaLink="false">http://wphacks.com/?p=1601</guid>
		<description><![CDATA[One of the lesser talked about features introduced in WordPress 2.7 is the new feature that breaks comments into multiple pages to create faster load times.   By default, this feature is activated and set to allow 50 comments before the break.    The problem is, with this new feature activated, your WordPress blog is creating duplicate [...]]]></description>
			<content:encoded><![CDATA[<p>One of the lesser talked about features introduced in WordPress 2.7 is the new feature that breaks comments into multiple pages to create faster load times.   By default, this feature is activated and set to allow 50 comments before the break.    The problem is, with this new feature activated, your WordPress blog is creating duplicate content.</p>
<p>Here is what I found while checking my Google Webmaster Tools account for this website:</p>
<p><strong>Duplicate Title Tags</strong></p>
<p><img class="alignnone size-full wp-image-1602" title="wphacks-title-tags" src="http://wphacks.com/wp-content/uploads/2009/01/wphacks-title-tags.png" alt="wphacks-title-tags" width="346" height="76" /></p>
<p><strong>Duplicate Descriptions</strong></p>
<p><img class="alignnone size-full wp-image-1603" title="wphacks-descriptions" src="http://wphacks.com/wp-content/uploads/2009/01/wphacks-descriptions.png" alt="wphacks-descriptions" width="599" height="53" /></p>
<p>Is this a huge deal?  Probably not, but you may want to consider unchecking this box in your Dashboard &gt; Settings &gt; Discussion tab.   Hopefully in a future version of WordPress this will NOT be checked by default and instead be an option.</p>
<p><img class="alignnone size-full wp-image-1604" title="break-comments" src="http://wphacks.com/wp-content/uploads/2009/01/break-comments.gif" alt="break-comments" width="417" height="48" /></p>
<img src="http://wphacks.com/?ak_action=api_record_view&id=1601&type=feed" alt="" /><p>You are reading <a href="http://wphacks.com/warning-wordpress-27-comment-pagination-creates-duplicate-content/">Warning: WordPress 2.7 Comment Pagination Creates Duplicate Content</a>  © 2009 | <a href="http://wphacks.com">WordPress Hacks</a> | <a href="http://wpnexus.com">WordPress Directory</a> | <a href="http://wpforums.com/">WordPress Forums</a> | <a href="http://wpebook.com/">WordPress eBook</a></p>

<p><small>Enjoy writing about WordPress?  Get your blog more exposure by joining the <a href="http://wphacks.com/write/">WordPress Hacks writing team</a>!</small></p>]]></content:encoded>
			<wfw:commentRss>http://wphacks.com/warning-wordpress-27-comment-pagination-creates-duplicate-content/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>Someone Please Rescue the Popularity Contest WordPress Plugin</title>
		<link>http://wphacks.com/someone-please-rescue-the-popularity-contest-wordpress-plugin/</link>
		<comments>http://wphacks.com/someone-please-rescue-the-popularity-contest-wordpress-plugin/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 08:00:45 +0000</pubDate>
		<dc:creator>Kyle Eslick</dc:creator>
				<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Popular Posts]]></category>
		<category><![CDATA[Popularity Contest]]></category>
		<category><![CDATA[WordPress 2.7]]></category>
		<category><![CDATA[WordPress Plugins]]></category>

		<guid isPermaLink="false">http://wphacks.com/?p=1581</guid>
		<description><![CDATA[Possibly my favorite WordPress plugin of all time has always been the Popularity Contest WordPress plugin from Alex King.    Back when WordPress 2.5 first came out, there was a minor scare where Popularity Contest quit working on new WordPress blogs, but a fix was eventually published and once again all was right with the world. [...]]]></description>
			<content:encoded><![CDATA[<p>Possibly my favorite WordPress plugin of all time has always been the <a href="http://alexking.org/projects/wordpress">Popularity Contest WordPress plugin</a> from Alex King.    Back when WordPress 2.5 first came out, there was a minor scare where Popularity Contest quit working on new WordPress blogs, but a <a href="http://wphacks.com/how-to-fixing-popularity-contest-plugin-for-wordpress-25/">fix was eventually published</a> and once again all was right with the world.</p>
<p>Now that WordPress 2.7 has been released, I noticed the other day while setting up a couple new niche blogs that Popularity Contest appears to again be broken on fresh installations of WordPress 2.7.    My WordPress installations which already had Popularity Contest installed and were upgraded to WordPress 2.7 seem to still be working fine.</p>
<p>While checking for updates on the authors page, I noticed that it appears that Popularity Contest (along with Alex&#8217;s other plugins) are no longer supported and will not receive any future updates.  In fact, the last update was over a year ago.   The only exception I know of is the <a href="http://sharethis.com/">Share This plugin</a>, which I believe was purchased by someone who has continued to improve the plugin.</p>
<p>My hope with this post is that someone will either take over supporting this WordPress plugin (if Alex is willing to hand it over to someone), or that someone will create a similar plugin for the WordPress community.   Heck, something like this that is supported and gets regular feature updates might even be something I would happily pay a one time fee for!</p>
<p>Anyone having luck with Popularity Contest and brand new WordPress 2.7 installations?</p>
<img src="http://wphacks.com/?ak_action=api_record_view&id=1581&type=feed" alt="" /><p>You are reading <a href="http://wphacks.com/someone-please-rescue-the-popularity-contest-wordpress-plugin/">Someone Please Rescue the Popularity Contest WordPress Plugin</a>  © 2009 | <a href="http://wphacks.com">WordPress Hacks</a> | <a href="http://wpnexus.com">WordPress Directory</a> | <a href="http://wpforums.com/">WordPress Forums</a> | <a href="http://wpebook.com/">WordPress eBook</a></p>

<p><small>Enjoy writing about WordPress?  Get your blog more exposure by joining the <a href="http://wphacks.com/write/">WordPress Hacks writing team</a>!</small></p>]]></content:encoded>
			<wfw:commentRss>http://wphacks.com/someone-please-rescue-the-popularity-contest-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>WordPress 2.7. What Does It Mean For You?</title>
		<link>http://wphacks.com/wordpress-27-what-does-it-mean-for-you/</link>
		<comments>http://wphacks.com/wordpress-27-what-does-it-mean-for-you/#comments</comments>
		<pubDate>Mon, 15 Dec 2008 08:00:20 +0000</pubDate>
		<dc:creator>Alex Denning</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Releases]]></category>
		<category><![CDATA[WordPress 2.7]]></category>
		<category><![CDATA[WordPress Features]]></category>

		<guid isPermaLink="false">http://wphacks.com/?p=1433</guid>
		<description><![CDATA[It was with great excitement that WordPress 2.7 was released late last week, but what does it mean for you? Well, the admin section has been given a makeover, and now looks a lot slicker. Alongside this, there has been an emphasis on doing everything with a single click. You can see the new interface [...]]]></description>
			<content:encoded><![CDATA[<p>It was with great excitement that WordPress 2.7 was released late last week, but what does it mean for you? Well, the admin section has been given a makeover, and now looks a lot slicker. Alongside this, there has been an emphasis on doing everything with a single click. You can see the new interface for yourself:</p>
<p><img class="alignnone size-full wp-image-1435" src="http://wphacks.com/wp-content/uploads/2008/12/nometet-dashboard1.png" alt="nometet-dashboard1" width="550" height="506" /></p>
<p>So, how do you get 2.7? If you installed WordPress using Fantastico then you upgrade by logging into your Fantastico control panel and selecting &#8220;upgrade to 2.7&#8243;. Its advisable to backup your database first, but don&#8217;t let this put you off upgrading &#8211; I&#8217;ve just upgraded two sites from 2.5.2 and 2.6.2 to 2.7 via Fantastico with no problems at all. Otherwise, head over to <a href="http://wordpress.org/dowload/">WordPress and download the software</a>.</p>
<p>But why should you upgrade in the first place? 2.7&#8242;s visual overhaul makes it so much easier to use; you can rearrange your dashboard and have literally everything at your fingertips. You can reply and moderate comments from the dash (even by keyboard shortcuts!), as well as write new posts directly from the dashboard.</p>
<p>Plugins can be installed by installed by searching the WordPress.org plugins database with a single click without leaving your site. How cool is that! You can upload plugins from your computer without unzipping them and WordPress will install them. You can also upgrade your plugins with a single click. Speaking of single click upgrading, your upgrade to 2.7 could well be your last manual upgrade as 2.7 includes a feature that lets you upgrade your WordPress install with a single click.</p>
<p>With WordPress increasingly being used for everything, a useful new feature, Sticky Posts, allows you to keep a post at the top of your blog, even if you have more recent posts. In practice, this means if you&#8217;re running a competition or something like that, then you can keep attention directed at your big post.</p>
<p>The shiny new interface extends beyond the dashboad, and the focus is very much on moving everything around to suit you. The screen below shows how you can rearrange your post-writing page.</p>
<p><img class="alignnone size-full wp-image-1436" src="http://wphacks.com/wp-content/uploads/2008/12/nometet-post-page.png" alt="nometet-post-page" width="550" height="250" /></p>
<p>And for those wondering why 2.7 isn&#8217;t 3.0 with all of these great additions, according to Weblog Tools Collection, Matt <a href="http://weblogtoolscollection.com/archives/2008/11/19/why-27-is-not-30/">doesn&#8217;t want to skip version numbers</a> anymore.</p>
<p>For the complete lowdown, <a href="http://codex.wordpress.org/Version_2.7">visit the codex</a>.</p>
<p>Finally, this video from the WordPress team briefly looks through some of the new features</p>
<p><em> This was a guest post by Alex Denning, who is a WordPress power user, web design freelancer and currently maintains two sites &#8211; <a href="http://nometet.com/">Nometet.com</a> and <a href="http://greengrassgames.com/">GreenGrassGames.com</a>. <a href="http://twitter.com/AlexDenning">You can follow him on Twitter here.</a> </em><em>If you have WordPress knowledge and are interested in <a href="../write">writing a post for WordPress Hacks</a>, please <a href="../contact">contact us</a>.</em></p>
<img src="http://wphacks.com/?ak_action=api_record_view&id=1433&type=feed" alt="" /><p>You are reading <a href="http://wphacks.com/wordpress-27-what-does-it-mean-for-you/">WordPress 2.7. What Does It Mean For You?</a>  © 2008 | <a href="http://wphacks.com">WordPress Hacks</a> | <a href="http://wpnexus.com">WordPress Directory</a> | <a href="http://wpforums.com/">WordPress Forums</a> | <a href="http://wpebook.com/">WordPress eBook</a></p>

<p><small>Enjoy writing about WordPress?  Get your blog more exposure by joining the <a href="http://wphacks.com/write/">WordPress Hacks writing team</a>!</small></p>]]></content:encoded>
			<wfw:commentRss>http://wphacks.com/wordpress-27-what-does-it-mean-for-you/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>WordPress 2.7 is Finally Here!</title>
		<link>http://wphacks.com/wordpress-27-now-available-for-download/</link>
		<comments>http://wphacks.com/wordpress-27-now-available-for-download/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 02:20:44 +0000</pubDate>
		<dc:creator>Kyle Eslick</dc:creator>
				<category><![CDATA[Releases]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress 2.7]]></category>

		<guid isPermaLink="false">http://wphacks.com/?p=1399</guid>
		<description><![CDATA[This is a quick heads up to WordPress Hacks readers.  Just saw this posted over at our WordPress Forums, so I checked it out and sure enough, it looks like WordPress 2.7 is now showing on the official download page! So far there hasn&#8217;t been an official announcement by the WordPress team, but I would [...]]]></description>
			<content:encoded><![CDATA[<p>This is a quick heads up to <a href="http://wphacks.com/">WordPress Hacks</a> readers.  Just saw this posted over at our <a href="http://wpforums.com/wordpress-org-news-discussions/133-wordpress-2-7-now-available.html">WordPress Forums</a>, so I checked it out and sure enough, it looks like WordPress 2.7 is now showing on the <a href="http://wordpress.org/download/">official download page</a>!</p>
<p>So far there hasn&#8217;t been an official announcement by the WordPress team, but I would expect to see one within the hour since it is showing on their official download page.</p>
<p>~[<a href="http://wordpress.org/download/">Go Download WordPress 2.7</a>]~</p>
<p><em>Edit: </em>The official announcement was just posted and can be seen <a href="http://wordpress.org/development/2008/12/coltrane/">here</a>.</p>
<img src="http://wphacks.com/?ak_action=api_record_view&id=1399&type=feed" alt="" /><p>You are reading <a href="http://wphacks.com/wordpress-27-now-available-for-download/">WordPress 2.7 is Finally Here!</a>  © 2008 | <a href="http://wphacks.com">WordPress Hacks</a> | <a href="http://wpnexus.com">WordPress Directory</a> | <a href="http://wpforums.com/">WordPress Forums</a> | <a href="http://wpebook.com/">WordPress eBook</a></p>

<p><small>Enjoy writing about WordPress?  Get your blog more exposure by joining the <a href="http://wphacks.com/write/">WordPress Hacks writing team</a>!</small></p>]]></content:encoded>
			<wfw:commentRss>http://wphacks.com/wordpress-27-now-available-for-download/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WordPress 2.7 Release Candidate 2 Now Available for Download</title>
		<link>http://wphacks.com/wordpress-27-release-candidate-2-now-available-for-download/</link>
		<comments>http://wphacks.com/wordpress-27-release-candidate-2-now-available-for-download/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 01:47:59 +0000</pubDate>
		<dc:creator>Kyle Eslick</dc:creator>
				<category><![CDATA[Releases]]></category>
		<category><![CDATA[WordPress 2.7]]></category>
		<category><![CDATA[WordPress Release Candidate]]></category>

		<guid isPermaLink="false">http://wphacks.com/?p=1387</guid>
		<description><![CDATA[Looks like WordPress 2.7 isn&#8217;t quite ready yet for WordPress.org users, as the 2nd release candidate was released today. If you&#8217;re ready to make the leap to WordPress 2.7, you can download the WordPress 2.7 Release Candidate 2 here. You are reading WordPress 2.7 Release Candidate 2 Now Available for Download © 2008 &#124; WordPress [...]]]></description>
			<content:encoded><![CDATA[<p>Looks like WordPress 2.7 isn&#8217;t quite ready yet for WordPress.org users, as the <a href="http://wordpress.org/development/2008/12/27-release-candidate-two/">2nd release candidate was released today</a>.</p>
<p>If you&#8217;re ready to make the leap to WordPress 2.7, you can <a href="http://wordpress.org/wordpress-2.7-RC2.zip">download the WordPress 2.7 Release Candidate 2 here</a>.</p>
<img src="http://wphacks.com/?ak_action=api_record_view&id=1387&type=feed" alt="" /><p>You are reading <a href="http://wphacks.com/wordpress-27-release-candidate-2-now-available-for-download/">WordPress 2.7 Release Candidate 2 Now Available for Download</a>  © 2008 | <a href="http://wphacks.com">WordPress Hacks</a> | <a href="http://wpnexus.com">WordPress Directory</a> | <a href="http://wpforums.com/">WordPress Forums</a> | <a href="http://wpebook.com/">WordPress eBook</a></p>

<p><small>Enjoy writing about WordPress?  Get your blog more exposure by joining the <a href="http://wphacks.com/write/">WordPress Hacks writing team</a>!</small></p>]]></content:encoded>
			<wfw:commentRss>http://wphacks.com/wordpress-27-release-candidate-2-now-available-for-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.7 Coming to WordPress.com Thursday Afternoon</title>
		<link>http://wphacks.com/wordpress-27-coming-to-wordpresscom-thursday-afternoon/</link>
		<comments>http://wphacks.com/wordpress-27-coming-to-wordpresscom-thursday-afternoon/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 03:01:03 +0000</pubDate>
		<dc:creator>Kyle Eslick</dc:creator>
				<category><![CDATA[Releases]]></category>
		<category><![CDATA[WordPress 2.7]]></category>
		<category><![CDATA[WordPress News]]></category>
		<category><![CDATA[WordPress.com]]></category>

		<guid isPermaLink="false">http://wphacks.com/?p=1331</guid>
		<description><![CDATA[If the WordPress 2.7 Release Candidate 1 release announced yesterday wasn&#8217;t enough of a sign that WordPress 2.7 is close to an official release, now it looks like the WordPress team just announced that WordPress.com will get the official WordPress 2.7 upgrade Thursday afternoon/evening here in the United States and early morning on the eastern [...]]]></description>
			<content:encoded><![CDATA[<p>If the <a href="http://wphacks.com/wordpress-27-release-candidate-1-now-available-for-download/">WordPress 2.7 Release Candidate 1 release</a> announced yesterday wasn&#8217;t enough of a sign that WordPress 2.7 is close to an official release, now it looks like the WordPress team just announced that WordPress.com will get the <a href="http://en.blog.wordpress.com/2008/12/03/27-gets-here-in-two-days/">official WordPress 2.7 upgrade Thursday afternoon/evening</a> here in the United States and early morning on the eastern half of the globe.  That is only two days away!</p>
<p>Here is the official announcement from the WordPress.com team:</p>
<blockquote><p>As promised, here is the advance notice that WordPress 2.7 is coming to WordPress.com, and will go live on Thursday, December 4, 2008 at 8pm Eastern Time. That’s 5pm Thursday in California, 1am Friday in London (UTC), 8am Friday in Jakarta, noon on Friday in Sydney…<a href="http://www.timeanddate.com/worldclock/fixedtime.html?year=2008&amp;month=12&amp;day=5&amp;hour=1&amp;min=0&amp;sec=0">find your time here</a>. Some people like to learn how to use new things by jumping right in and exploring, while others like to read the manual first to get the lay of the land. This post is a written version of the 2.7 interface tour/feature review I have been doing at <a href="http://central.wordcamp.org/">WordCamps</a>, and will tell you what’s new in the administration interface of WordPress 2.7. There are a lot of new features, so fair warning: this post is pretty long. If you’re more of the jump-in-and-play kind of person, you can skip this post for now, but you might want to remember it’s here just in case you get confused when 2.7 arrives at WordPress.com in two days.</p>
<p><em>A note on browser capabilities: WordPress 2.7 makes extensive use of JavaScript to create the user experience outlined here. If you have JavaScript turned off in your browser, some features may not be available or may work a bit differently than described here. In addition, using a recent standards-compliant browser will ensure that you have an optimal experience. Older browsers that are not supported by their manufacturers any longer may not look as expected; we recommend <a title="Get Firefox!" href="http://www.mozilla.com/en-US/firefox/">Firefox 3</a>, <a title="Get Google Chrome!" href="http://www.google.com/chrome">Google Chrome</a>, and <a title="Get Safari 3" href="http://www.apple.com/safari/">Safari 3</a>.</em></p></blockquote>
<p>Anyone notice they don&#8217;t recommend IE8?   <img src='http://wphacks.com/wp-includes/images/smilies/icon_mrgreen.gif' alt=':mrgreen:' class='wp-smiley' /> </p>
<img src="http://wphacks.com/?ak_action=api_record_view&id=1331&type=feed" alt="" /><p>You are reading <a href="http://wphacks.com/wordpress-27-coming-to-wordpresscom-thursday-afternoon/">WordPress 2.7 Coming to WordPress.com Thursday Afternoon</a>  © 2008 | <a href="http://wphacks.com">WordPress Hacks</a> | <a href="http://wpnexus.com">WordPress Directory</a> | <a href="http://wpforums.com/">WordPress Forums</a> | <a href="http://wpebook.com/">WordPress eBook</a></p>

<p><small>Enjoy writing about WordPress?  Get your blog more exposure by joining the <a href="http://wphacks.com/write/">WordPress Hacks writing team</a>!</small></p>]]></content:encoded>
			<wfw:commentRss>http://wphacks.com/wordpress-27-coming-to-wordpresscom-thursday-afternoon/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WordPress 2.7 Release Candidate 1 Now Available for Download</title>
		<link>http://wphacks.com/wordpress-27-release-candidate-1-now-available-for-download/</link>
		<comments>http://wphacks.com/wordpress-27-release-candidate-1-now-available-for-download/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 03:16:08 +0000</pubDate>
		<dc:creator>Kyle Eslick</dc:creator>
				<category><![CDATA[Releases]]></category>
		<category><![CDATA[WordPress 2.7]]></category>
		<category><![CDATA[WordPress Release Candidate]]></category>

		<guid isPermaLink="false">http://wphacks.com/?p=1326</guid>
		<description><![CDATA[The wait is almost over!   It looks like the WordPress.org team has announced that the first release candidate of WordPress 2.7 is now available for download. Typically release candidates are pretty safe to begin using, so if you have been waiting to try out WordPress 2.7, now might be the time! [Download WordPress 2.7 Release [...]]]></description>
			<content:encoded><![CDATA[<p>The wait is almost over!   It looks like the WordPress.org team has announced that the <a href="http://wordpress.org/development/2008/12/wordpress-27-release-candidate-1/">first release candidate of WordPress 2.7</a> is now available for download.</p>
<p>Typically release candidates are pretty safe to begin using, so if you have been waiting to try out WordPress 2.7, now might be the time!</p>
<p>[<a href="http://wordpress.org/wordpress-2.7-RC1.zip">Download WordPress 2.7 Release Candidate 1</a>]</p>
<img src="http://wphacks.com/?ak_action=api_record_view&id=1326&type=feed" alt="" /><p>You are reading <a href="http://wphacks.com/wordpress-27-release-candidate-1-now-available-for-download/">WordPress 2.7 Release Candidate 1 Now Available for Download</a>  © 2008 | <a href="http://wphacks.com">WordPress Hacks</a> | <a href="http://wpnexus.com">WordPress Directory</a> | <a href="http://wpforums.com/">WordPress Forums</a> | <a href="http://wpebook.com/">WordPress eBook</a></p>

<p><small>Enjoy writing about WordPress?  Get your blog more exposure by joining the <a href="http://wphacks.com/write/">WordPress Hacks writing team</a>!</small></p>]]></content:encoded>
			<wfw:commentRss>http://wphacks.com/wordpress-27-release-candidate-1-now-available-for-download/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

