Written on December 26th, 2005 at 07:12 am by Darren Rowse
10 Things You Should Know about WordPress 2.0
Aaron Brazell is from Baltimore, Maryland and leverages his influence as a blogger at various blogs to develop his (sometimes) convoluted opinions. He writes about Web 2.0 topics at Emerging Earth and keeps a personal and political blog at Technosailor.com
If you’ve been seriously blogging for any bit of time at all, you’ve heard of the juggernaut that is WordPress. WordPress, of course, is the most popular self-hosted blogging platform utilized by independent writers. The official launch of WordPress 2.0 is upon us and, no doubt, the blogosphere will be buzzing about its launch. As a tester of the product since the early days of the WordPress 2.0 alpha builds, I’ve watched, participated and even assisted in the development of this software.
While this entry might get a bit technical, it is only because thecoolest new features are under the hood. For new users who don’t feel like tinkering with code and expect a shiny new piece of software out of the box, fear not… you will not be disappointed. The software provides a much more interactive and user-friendly interface. And for those of you who love the color blue, you’re going to love the new admin panel!
However, if you want to get into the real glorious nitty gritty of what you can do, then read on!
Here are ten things you may or may not know that can be extremely beneficial to know about WordPress 2.0….
- Thumbnails of Downloaded Themes - In the past, whenever you’ve gone and looked for a shiny new theme for your WordPress blog, you might have had the luck of seeing the theme in action. However, I can’t be the only one who has looked at a theme created 6 months earlier and wondered what it looked like on a blog because the author had changed it since publishing. With WordPress 2.0, theme authors are being encouraged to include a screenshot, entitled screenshot.png, in the theme folder. By doing so, the thumbnail will be loaded for the blogger to see in his theme list prior to enabling!
- Capabilities and Roles - In previous versions of WordPress, users could be given ‘limited’ permissions by assigning user levels. User levels, in the past, have relied on a scale 0 to 10, with 10 having unlimited administrative permissions. Various levels in between allowed ‘guest’ bloggers or contributors to have appropriate rights on your blog. In WordPress 2.0, this has been completely revamped. Without going into a lot of repetitive details on the nature of the various capabilities (Ryan explains capabilities and roles in great detail), the new features open up a whole new avenue of flexibility for plugin authors.
For instance, there is an API function called
current_user_can(), which allows the plugin author to match a currently logged in user against a list of capabilities. These capabilities range from ‘moderate_comments’ to ‘publish_posts’. Ryan’s article has the entire list, but it can also be found at the bottom of the wp-admin/upgrade-schema.php file. - Importing from Other Blogging Platforms - As WordPress becomes an even bigger entity with a higher profile, it’s likely more defectors will want to migrate their existing Blogger, Moveable Type or other style blog to WordPress. I certainly wouldn’t blame them. Old-style import scripts that were included with WordPress have been scrapped for a couple reasons. For one, the other platforms have changed over time and the importers no longer work or the changes to WordPress over time have required a new approach to getting user data into WordPress accurately and effectively. There’s also the little detail of shoddy or incomplete code.
- Built In Caching - Caching is the idea of storing files for quicker page load time. The concept as a whole is not new. Browsers cache all the time. Internet Explorer uses Temporary Internet Files and Firefox has its own cache. These help individual users load pages faster, but does not help a site load faster across the board. With WordPress 2.0, caching is built in. Queries to the database are saved because, if a page or setting has been loaded once, it is stored on the server file system for quicker load for all users.
This is generally beneficial but can also cause problems, particularly if you wish to move your blog from one folder to another (For instance, if you have had your blog in http://example.com/blog and wish to move it to a new folder such as http://example.com/wp). Because database options have been cached, WordPress still thinks it is at another location.
To get around this, edit wp-config.php and add the following line before the closing '?>'.
define('DISABLE_CACHE', true); - Image Uploading - In previous version of WordPress, there was an “Upload” feature available through the admin menu. That menu item is no longer. It has been replaced with an uploader on the edit page. In theory, bloggers can upload images and then drag-and-drop the image into the post. Unfortunately, this feature has caused much heartburn for some testers. There are options to use a full-size image or a thumbnail in the entry, but either way in pre-release versions, this feature seems to be iffy at best with various platforms and browsers. This will probably be an item that is improved upon, but for the time being, manually editing the HTML with specified dimensions is best practice.
Also note that dragging and dropping images when not using the Rich Text Editor will only create a permalink to the image.
- Use WordPress for Social Networking - There are probably a thousand social networking tools out there - many of which have plugins for WordPress available to them. Someof these are Flickr , del.icio.us or Digg. However, WordPress has built-in integration with such a tool in that allows search engines understand your relationships with other bloggers. It is called the XFN (XHTML Friends Network). XFN allows bloggers to establish links in their link manager (blogroll) as “friend”, “co-worker” or “crush” among others. It even allows you to designate whether you’ve physically met the person.
- Hooks and Filters - Hooks and Filters are a boon for plugin developers. They are what allows plugin developers to modify the behavior of WordPRess without actually changing the core files. Of course, filters and hooks are not a new concept… there’s just more of them in WordPress 2.0. Filters are functions that do as they suggest - filter. Items like a subject header can be filtered through to create an effect or change the way an item is displayed. Hooks give the developer a way to ride the coat tails of an existing “element” (such as a header or the rendering of a post, etc) and perform an action of some sort. An example of this would be to have someone emailed whenever publish_post occurs. (Of course, this is already something that can be done so it is a poor example).
- Built in Anti-Spam - WordPress 2.0 now ships with Akismet, a built in spam-filter. I’ve been using Akismet spam filtering since October 25th, the day it was launched and I have had one spam comment make it through to my moderation queue. There are alot of other plugins that do spam filtering, but in the past it has often required blogs to use two or more plugins just to get a good grip on comment and trackback spam. There is one hitch though. Akismet users will need to register for an API key in order to use it. It’s free and worth it.
- Don’t Use the Rich Text Editor - WordPress developers will likely scorn me when they read this, but it’s my entry, right? WordPress 2.0 includes TinyMCE, a javascript Rich Text Editor that gives bloggers a familiar Microsoft Word-like editor complete with common shortcut keys like Ctrl-B for Bold, Ctrl-I for Italics, etc.
There are a couple problems I see, as a web purist, with this approach. TinyMCE, though it will probably continue to be improved, creates really shoddy HTML in some cases. Empty tags, funky cut-and-paste, and the now-internally-infamous shoddy image feature makes it great for quick and dirty entries but poor for day-to-day usage. I don’t use Safari, the preferred browser for most Mac users, so I can’t be sure if it works yet for you Safari users, but last time I recall it didn’t.
- WordPress as a Content Management System - Suppose you like WordPress as a blogging tool and you wish to use it to run non-blog sites. This is a distinct possibility, and not necessarily WordPress 2.0 specific. In fact, I’ve been doing this for the past few years in one form or another.
Let me give you an example of one such site. My father is a pastor at New Covenant Community Church in Audubon, New Jersey. (Feel free to visit. I’m sure he won’t mind!) This site is completely WordPress 2.0 driven and it doesn’t even resemble a blog! The question is, how did I accomplish this?
Well, there’s a couple of things I did and I’ll bullet point them for quick reference.
- Because we wanted the front page to have a different layout than the rest of the site, we created a special template file called NCCC_Main_Page.php. To make it usable for our front page, we needed to add this block of code near the top (after the opening '<?php')
/*
Template Name: NCCC_Main_Page
*/ - We created a "page" with our home page content and selected the NCCC_Main_Page template from the Page Template drop down.
- We then downloaded the Static Front Page plugin and followed the instructions to install it.
- We created the content for our home page and assigned it a page slug of "home" (Note: this is most easily done by assigning the page title of home and then changing it to something more useful after publishing)
- Because most non-blog sites, including NCCC’s, have a manageable number of pages, we were able to create Entries in WordPress and create a static menu using the entry permalinks. There are built-in functions and plugins to make larger amounts of content more manageable and automatic.
- As a bonus, we did create a non-blog blog of “Upcoming Events” by posting under a specific category. The permalink to this page was a mere category archive permalink with the specific category used in the archive call. This provides added benefit of enabling an RSS feed of upcoming events.
- Because we wanted the front page to have a different layout than the rest of the site, we created a special template file called NCCC_Main_Page.php. To make it usable for our front page, we needed to add this block of code near the top (after the opening '<?php')
I, along with others, have taken to creating easy upgrade paths for folks coming from Textpattern, Blogger and Moveable Type. If you’re not on one of these platforms, but still want to come over to WordPress, the core software also permits import from an RSS feed!
As a bonus, for readers who have been monitoring the merger of b5media and About Weblogs , you might be interested to know that the tool of choice is a custom Nucleus CMS importer that ultimately will be submitted to the WordPress core code. But that won’t make this release!
153 Responses to “10 Things You Should Know about WordPress 2.0”
Todd Brill
December 26th, 2005 9:32 am
I can’t wait to get my grubby hands on 2.0. I’ve been a user and fanatic of WordPress for some time now. I’m only suprised its taken this long for WP to integrate some solid anti-spam code.
Jayson
December 26th, 2005 9:44 am
Wordpress 2.0 as content management? You could easily do that with 1.5. Check out http://www.duboisacademy.org
home.php is amazing.
Hidden Nook
December 26th, 2005 10:55 am
Will they upgrade the free blogs as well in order to allow users to test it out?
I liked the feel of word press, but was dissapointed in the lack of customization with it. One reason I love blogger is the fact I can experiement with the code and am heavily considering using it for other future sites.
I hope Word Press is everything they say it’s going to be, as I have found very few blog software that can replace blogger.
» 10 Things You Should Know about WordPress 2.0 The Blog Herald: more blog news more often
December 26th, 2005 11:11 am
[…] 25th, 2005 and is filed under General. You can follow any responses to this entry through the RSS 2.0 feed. You can skip to the end and leave a response. Pinging is currently notallowed. […]
George
December 26th, 2005 12:36 pm
Hidden Nook:
The free wordpress.com blogs you are talking about is already using the 2.0 version.
Jon Abad
December 26th, 2005 12:40 pm
XFN has been in WordPress for quite a while (1.2 i think?) and while I’ve tagged my links with the information, I’ve yet to see the benefit of doing it.
Its one of those things that sounds great for developers but no one is making worthwhile for the end user.
Todd: WP 1.5’s moderation system has worked pretty well when it is loaded up with a decent amount of words. This is a pain for most users and so it was rarely done. Akismet just changes the hurdle. Instead of filling in a moderation queue, people have to get an API key through WordPress.com.
Hidden Nook: Are you referring to WordPress.com blogs? It runs on a slightly different piece of code called WordPress MU (for Multi User). The parts that people usually want to play with (the admin interface for example) is identical though. If you want to play with plugins and theming, then for the time being, you still need to have your own hosted space.
BaseBlogging » About Wordpress 2.0
December 26th, 2005 12:47 pm
[…] If you’re a Wordpress user, you’ve probably heard that Wordpress 2.0 is being released tomorrow (December 26th). Problogger has a list of 10 Things You Should Know about WordPress 2.0. The items that jumped out at me were […]
Technosailor » A Christmas Break
December 26th, 2005 2:23 pm
[…] Hey folks— Big things for after Christmas. Look for a major article on Problogger on Monday(ish) by yours truly (Edit: it’s live!). It’s all about WordPress 2.0 (which coincidentally launches Monday). I have plenty of pre-published content on Emerging Earth for the weekend. Entries will go live each day while I sit mindlessly numb over the holiday season. […]
Christina
December 26th, 2005 2:48 pm
Great article Aaron–I think my 2.0 image heartburn has subsided. Thanks for all your patience and help!
Rian
December 26th, 2005 2:50 pm
Will they upgrade the free blogs as well in order to allow users to test it out?
I liked the feel of word press, but was dissapointed in the lack of customization with it. One reason I love blogger is the fact I can experiement with the code and am heavily considering using it for other future sites.
I hope Word Press is everything they say it’s going to be, as I have found very few blog software that can replace blogger.
That’s a wordpress.com limitation, not a standalone installation limitation. WordPress as downloaded and installed on one’s own server is completely different and far more extensible.
Aaron Brazell
December 26th, 2005 3:06 pm
Jon–
You are correct. XFN is not a new feature and I should have qualified that. The point of pointing it out was because, when WP 1.5 was released social networking was not nearly as big as it is today. Today, it seems we are in “the golden age” of Social Networking and XFN plays a major role in that. It was worth highlighting as a feature.
Nathan Waters
December 26th, 2005 4:24 pm
WordPress 2.0 Final Released!
… Well, nearly. But it’s only a few days away now (supposed to be released on Dec 26th US time, which means Dec 27th AUS time)
A couple of the new features look very promising, and you can bet within hours of it’s release I’ll…
Preparing for the Release of WordPress 2.0 at Tauquil’s Blog
December 26th, 2005 4:35 pm
[…] With the imminent release of WordPress 2.0, here are 10 things you should know about WP 2.0, along with list of what’s new. For people who have made the move, I would love to hear your experiences. […]
Jon Heizer
December 26th, 2005 4:47 pm
[…]Guest blogger Aaron Brazell on Problogger.net has posted an interesting story that describes 10 things you should know about that will appear in WordPress 2.0[…]
technology-gadgets-review
December 26th, 2005 5:37 pm
wordpress is a ver good software
HAPPY CHRISMAS TO ALL
karthik
December 26th, 2005 7:03 pm
I like wordpress software it has great features like Categories , templates customization etc. and now anti-spam code. I will be using wordpress on my new blog which i will create in 1 month.
Happy christmas and happy new year to all
check my blogs Cheap laptop review blog and Tech news Blog
blogpocket 5.0 » Blog Archive » 10 cosas que hay que saber sobre WordPress 2.0
December 26th, 2005 8:08 pm
[…] En Problogger, Darren Rowse nos explica 10 cosas que deberíamos conocer sobre WordPress 2.0 y, a continuación, las resumimos brevemente, aunque yo destacaría los puntos 5 y 9, aspectos que en mis pruebas también han resultado negativos: […]
Rk
December 26th, 2005 11:04 pm
For homepage, I think there is an easier way than the workaround of 6 steps you had to do along with an extra plugin. Correct me if I am wrong. I saw the following here
Then, the static page: How do I have a static page without changing the url of the blog? With WordPress 1.5, home.php got introduced. Add this file (with whatever static content you want) to your list of theme files and it supersedes blog posts, archives and pages,…
Rk
December 26th, 2005 11:07 pm
Also, XFN was present earlier too.
Dont you think signing up for a WP.com account to get the API key is not a good idea afterall.. Because we are anyways users of WP complete software, why is another account creation is being expected ? Just to increase user count on wp.com ?
redstar
December 27th, 2005 1:10 am
It is a great blog tool Wordpress. If been trying Pivot, but thats not it. For the fun and for Blogs in English i ve been making up a Blog on Wordpress.com using 2.0. Its ofcourse not so advanged as if you run it your self, but its interface is looking cool.
Aaron Brazell
December 27th, 2005 1:33 am
Rk– I think getting an API key is worth it no matter how you do it. If it requires a WP.com account (as it does), then so be it. As I said, I’ve had one spam get through in over 2 months. That’s impressive, no?
Home.php… yep, you’re right. But there’s other things you can do as well and there’s more than one thing I did for NCCC’s website. More than just a homepage.
I already addressed XFN here.
Couros Blog » Blog Archive » Wordpress 2.0
December 27th, 2005 3:20 am
[…] I’ve been a big fan of Wordpress from the get-go, and Wordpress 2.0 is looking even more promising. Check out “10 Things You Should Know About Wordpress 2.0“. Items like a better user-management system, easier image upload/integration and a built-in spam filter could make blogging-life a bit easier. […]
miscblogger
December 27th, 2005 3:22 am
when is it coming out!? right now it is 10am december 26 in the US! shouldn’t it be out by now?
Aaron Brazell
December 27th, 2005 3:24 am
Sometime today. I’m waiting just like you and I know the WordPress site was taken down for a bit last night to prepare for the launch. Just stay close by. Matt and Ryan are probably sleeping off a Christmas hangover. Don’t forget, it is only 10:30AM Central time and 8:30 AM Pacific time (where the devs are) at this moment.
Rk
December 27th, 2005 4:04 am
Thanks Aaron for clarification.
Aaron Brazell
December 27th, 2005 4:13 am
Yep RK…
That’s the beauty of WordPress. It is extremely flexible and thus, for just about anything you do, there’s more than one way to skin the cat.
Jon Gales
December 27th, 2005 4:59 am
I disagree that users should automatically disable caching–it’s probably the biggest new feature you listed. WP crunches through a lot of databse calls and can be quite a stress on the server (just ask the B5 servers, if the pages of B5 sites were all static or cached it could easily run on a single server). How often do you change your URL? Not very, hopefully never. Perhaps turn off caching for a few days after the change to get new caches.
One of the main reasons I’m sticking with MovableType is that it can produce static pages which really help out in high load. If I get Slashdotted during the middle of the night I don’t have to worry.
Aaron Brazell
December 27th, 2005 5:20 am
Valid argument, Jon, but unfortunately most users new to WP 2.0 will not know that they have to wait A DAY for the cache to re-sync. They are going to think they have to go and manually hack the database which will screw things up even more. I’m not a new user and I spent 3 hours screwed up over this. MY recommendation stands to not use it. However, I’m sure, as I said in the article, that the caching will be improved and this recommendation won’t always be my recommendation. But for now, with the WordPress 2.0 release now seemingly underway (with the WP.org site down for “server move”), I don’t think it’s a good idea for new WP 2.0 users to have to deal with that.
PXLated
December 27th, 2005 6:41 am
You mention “importing”…Any easy way to “export” out of WP?
I don’t like being locked in :-)
Aaron Brazell
December 27th, 2005 6:43 am
Now why would they provide that? ;)
Seriously, though, most platforms offer import paths so it would really be incumbent on the destination software to provide a means to bring WordPress in… just like WordPress is providing a way to bring other systems in.
The Monkey Cage » Getting to know Wordpress
December 27th, 2005 7:18 am
[…] read more | digg story […]
PXLated
December 27th, 2005 7:40 am
They probably wouldn’t as they most likely want lockin ;-)
WordPress 2.0
December 27th, 2005 8:34 am
[…] Der problogger hat einen interessanten Artikel über WordPress 2.0 geschrieben. Und hier gibt es eine Liste der mit WordPress 2.0 kompatiblem Plugins. […]
News of the Day » Blog Archive » Wordpress Fallout
December 27th, 2005 8:37 am
[…] Via digg.com is a story about the Top 10 things you need to know about Wordpress (which is what our beloved site is built on) here. […]
Sean Hayford O'Leary
December 27th, 2005 8:44 am
There’s an easier way to do a static home page (easier for the person managing the home page, at least).
Create a page using WP’s native page dealio. (Usually “Home”).
Rename “index.php” and the main WP directory “wp-cms.php”
Go to wp-includes/classes.php — find “index.php” and replace with “wp-cms.php”
Regenerate permalinks
Now create a new index.php. You’ll need the address to your home page (the one made in step one). For my case, it’s http://mysite.org/wp-cms.php?page_id=2. So, simply add the PHP: .
Voilla, you have a home page that can be easily managed by the end user. Only downfall is having to rename “index.php” “wp-cms.php” and re-doing the classes.php change every time you upgrade WP.
Sean Hayford O'Leary
December 27th, 2005 8:45 am
Pardon me, that PHP got cut off (duh, Sean!). Just use PHP include() to include the URI to your home page.
Steve
December 27th, 2005 9:09 am
Thanks for the nice rundown on the new features and capabilities of WP2.
redstar
December 27th, 2005 10:23 am
I have done the upgrade just a hour ago in not more than 20 minutes(just that long because i had to drink some coffee) the interface is looking cool(the old one as wel) for the rest its stil great.
TheMadAdmin » Blog Archive » WordPess 2.0 is coming your way…
December 27th, 2005 10:41 am
[…] WordPess 2.0 is coming your way… 10 Things You Should Know about WordPress 2.0: Blog Tips at ProBlogger Aaron Brazell is from Baltimore, Maryland and leverages his influence as a blogger at various blogs to develop his (sometimes) convoluted opinions. He writes about Web 2.0 topics at Emerging Earth and keeps a personal and political blog at Technosailor.com […]
shrapnel.ca »
December 27th, 2005 10:44 am
[…] Getting To Know Wordpress. I’ve been waiting for the upgrade ever since I tested the beta. Tags […]
Rachel
December 27th, 2005 10:49 am
Took me 5 mins to do the upgrade, nice and smooth here, just like all other updates. The admin interface looks nice and so does the AJAX :-)
spanring.name » WordPress 2.0
December 27th, 2005 10:56 am
[…] Despite some skepticism WordPress 2.0 comes with awesome new features and the whole upgrade process is pretty straightforward! […]
RuidoDigital » 10 cosas que debes saber de WordPress 2.0
December 27th, 2005 11:49 am
[…] El contenido de este post está basado en 10 Things You Should Know about WordPress 2.0, publicado por Darrem Rowse en ProBlogger. […]
Rachel
December 27th, 2005 11:54 am
PS If anyone gets stuck or needs a hand, feel free to msg me on MSN Messenger, rachel@cre8d-design.com
StigmergicWeb » WordPress 2.0
December 27th, 2005 11:59 am
[…] UPDATE - Alec also noticed the upgrade to WordPress, and points to a list of 10 things you should know about WordPress 2.0. […]
Confessions of an Undercover Geek » WordPress 2.0 is released!
December 27th, 2005 12:37 pm
[…] I have been reading about the Wordpress 2.0 release on Darren Rowse’s Site ProBlogger.net. […]
A Gonzo Journal » Almost Daily Linkorama Part 164
December 27th, 2005 1:06 pm
[…] 10 Things You Should Know about WordPress 2.0 My blog is powered by Wordpress, and they’ve just release version 2.0 which constitutes a major upgrade. […]
JaypeeOnline » WordPress 2.0 officially released
December 27th, 2005 1:09 pm
[…] Just earlier I was reading the article Darren posted about WordPress 2.0 entitled “10 Things You Should Know About Wordpress 2.0“. It has been previously available as a beta version and now I found out from Yuga’s post, that as of today, Wordpress 2.0 is officially released to the public. I am following Yuga’s recommendation and I won’t immediately upgrade my blog to 2.0 because it might affect the functionality of your plugins. I will wait for a few weeks or months until all the flaws and bugs have been discovered and fixed, then I will upgrade my blog. Permalink […]
Rachel
December 27th, 2005 1:20 pm
Just posted 5 little things I like about Wordpress 2.0 which you might find useful.
Marc
December 27th, 2005 1:38 pm
I strongly disagree with, “Don’t Use the Rich Text Editor”.
TinyMCE is an excellent example of great cross-browser compatibilty for a javascript utility. No it’s not perfect, but I evaluated several other leading editing tools and found TinyMCE to be the overall best choice due to compatibility, support community, popularity (which will ensure future growth) and several other reasons.
We’ve been using TinyMCE on the posting form of the EventSetter.com website for 6 months now. I can’t say enough good things about it. It is incredibly easy to incorporate into just about any website or CMS.
As I said before, no it’s not perfect… but try and find a wothwhile javascript utility that is.
Use TinyMCE, any problems will be minimal and they can generally be worked around.
WordPress 2.0 Now Available Niche Marketing
December 27th, 2005 1:42 pm
[…] If you want to learn more about WordPress 2, Darren posted an excellent review of WordPress 2 at his blog. Check it out. by Bo Bang | posted in Internet Marketing News, WordPress Tips Trackback URL | Comment RSS Feed | Incoming links […]
farkinglot.com » Blog Archive » 10 Things You Should Know about WordPress 2.0: Blog Tips at ProBlogger
December 27th, 2005 1:48 pm
[…] 10 Things You Should Know about WordPress 2.0: Blog Tips at ProBlogger […]
boytron.net - it’s a blog » Blog novo, WordPress novo
December 27th, 2005 1:53 pm
[…] Então, só pra fazer a reentrada no mundo blogueiro com chave de ouro, eu instalei o WordPress 2.0. Uma resenha interessante e bem específica do sistema pode ser vista aqui. Por enquanto só posso dizer que estou adorando cada detalhezinho, e a possibilidade de maior controle de spam nos comentários é o que mais me deixa animado - no blog antigo, era um pesadelo sequer deixar os posts abertos a comentários, visto que pelo menos 10 novos spams por minutos iam pro controle de moderação, misturados com comentários de leitores defacto. […]
børge forteller om livet » Oppdatert til WordPress 2.0
December 27th, 2005 1:58 pm
[…] Mye annet: Det er mange andre forbedringer i WP 2.0 også. Blant annet har administrasjonsområdet blitt kraftig oppdatert med både "eyecandy" (fancy bruk av Ajax) og nyttige funksjoner. Andre nyheter kan du lese om her og her. […]
Aaron Brazell
December 27th, 2005 2:00 pm
<code snob>
. No it’s not perfect, but I evaluated several other leading editing tools and found TinyMCE to be the overall best choice due to compatibility, support community, popularity (which will ensure future growth) and several other reasons.
Perhaps the answer is that no rich text editor created thus far meets the standard of valid HTML…
Don’t get me wrong, TinyMCE is by far in the top tier of rich text editors I have seen or used… but valid HTML… let’s go so far as to say HTML that breaks an XHTML Strict layout (in my experience) is enough to say goodbye to it.
Of course, this article is nearly universally opinion by me. But that’s what most entries are anywhere. Take the meat, spit out the bones. I just don’t like it (the RTE)
</code snob>
boytron.net - journal » Blog novo, WordPress novo
December 27th, 2005 2:58 pm
[…] Então, só pra fazer a reentrada no mundo blogueiro com chave de ouro, eu instalei o WordPress 2.0. Uma resenha interessante e bem específica do sistema pode ser vista aqui. Por enquanto só posso dizer que estou adorando cada detalhezinho, e a possibilidade de maior controle de spam nos comentários é o que mais me deixa animado - no blog antigo, era um pesadelo sequer deixar os posts abertos a comentários, visto que pelo menos 10 novos spams por minutos iam pro controle de moderação, misturados com comentários de leitores defacto. […]
W A L E E D » وورد بريس 2
December 27th, 2005 3:13 pm
[…] 10 أشياء عليك معرفتها عن وورد بريس 2 .. تجدها هنا […]
Dexter’s Blog » Getting to know Wordpress
December 27th, 2005 4:02 pm
[…] read more | digg story […]
David Stone
December 27th, 2005 5:50 pm
Pity they STILL don’t do multiple blogs from the same admin panel. Guess I’ll have to stick to my crappy MT for a while longer. I run 3 weblogs. :(
Online » 10 cosas que deberías saber sobre wordpress 2.0
December 27th, 2005 6:42 pm
[…] Vía | Problogger […]
Rachel
December 27th, 2005 6:45 pm
David, have you tried Wordpress Mu?
http://mu.wordpress.org/
10 Things » Allyn Edmonds
December 27th, 2005 7:20 pm
[…] 10 things you should know about WordPress 2.0 Print This Article by Allyn | posted in Uncategorized Trackback URL | Comment RSS Feed Tag at del.icio.us | Incoming links […]
-= Gorik.com = - » Blog Archive » links for 2005-12-27
December 27th, 2005 7:48 pm
[…] 10 Things You Should Know about WordPress 2.0: Blog Tips at ProBlogger (tags: Wordpress blogging tips) No Tags […]
AviDardik.com » 10 Things You Should Know about WordPress 2.0
December 27th, 2005 8:51 pm
[…] Following the release of Wordpress 2.0 - Here are 10 Things You Should Know about WordPress 2.0. […]
Pixel y Dixel » 10 cosas que deberas saber sobre el nuevo WordPress 2.0
December 27th, 2005 11:06 pm
[…] 10 cosas que deberas saber sobre el nuevo WordPress 2.0: en Problogger nos cuentan algunas de las novedades que trae el nuevo WordPress. Tiene muy muy muy buena pinta. Artculos relacionados :WordPress 2.0 Release CandidateMoviendo pixel y dixelLego HaloBlog Software BreakdownPixel y Dixel versin 2.0 Clasificado bajo:Weblogs / minipost Comentarios : […]
Technosailor » Problogger Article and Being “Digg”ed
December 27th, 2005 11:28 pm
[…] I’m very proud of the exposure that I’m getting through my Problogger article, 10 Things you Should Know About WordPress 2.0. Last time I checked, there were 65 comments and track/pingbacks to the article and counting. With WordPress 2.0 being released yesterday, the article is perfectly timed to meet the questions of the blogging world, it would seem. It even was “Digg”ed, the effect that is similar to being Farked or Slashdotted. At this time, Digg users have “Digg”ed it 538 times! Nice! […]
Ponto Media » WordPress 2.0
December 27th, 2005 11:52 pm
[…] JÁ ESTÁ disponível o WordPress 2.0. E já agora: 10 Things You Should Know about WordPress 2.0. […]
BlogBuster » Om den nye WordPress 2.0
December 27th, 2005 11:58 pm
[…] Ls hele artiklen 10 Things You Should Know about WordPress 2.0. Gemt under: WordPress Kommentar: […]
Moxiecode
December 28th, 2005 12:50 am
Hi,
Regarding item #9, what exactly do you mean with “shoddy HTML in some cases”, if you find a bug related to TinyMCE, please submit these to the Sourceforge bug report system.
There are a lot of tweaks you can make to TinyMCE in order to get better HTML output, check the documentation on the TinyMCE website. You will probably need to get your hands dirty and fiddle around with the code some, since Wordpress does not yet allow for configuration through a user interface.
Regards,
Joakim L
TinyMCE Developer
Í dagsins iðu … » WP 20
December 28th, 2005 1:17 am
[…] Pps. Aaron Brazell nefnir 10 atriði sem vert er að vita um WP 20. […]
Anotherblog » 10 cosas que deberías saber sobre Wordpress 2.0
December 28th, 2005 1:25 am
[…] 10 cosas que deberías saber sobre Wordpress 2.0 [vía] […]
Greg Magnus » 10 Things You Should Know about WordPress 2.0: Blog Tips at ProBlogger
December 28th, 2005 2:07 am
[…] 10 Things You Should Know about WordPress 2.0 […]
Wordpress 2.0 en wat is er nieuw? at CheckWeb
December 28th, 2005 2:46 am
[…] Wordpress heeft een flinke sprong gemaakt naar een nieuwe versie, de WP-site is ook flink onder handen genomen, maar kijk ook even de tien dingen die je moet weten en wat er in de nieuwe versie allemaal verandert is. // Used for showing and hiding user information in the comment form function ShowUtils() { document.getElementById(”authorinfo”).style.display = “”; document.getElementById(”showinfo”).style.display = “none”; document.getElementById(”hideinfo”).style.display = “”; } function HideUtils() { document.getElementById(”authorinfo”).style.display = “none”; document.getElementById(”showinfo”).style.display = “”; document.getElementById(”hideinfo”).style.display = “none”; } […]
E L S U A . N E T » Blog Archive » WordPress 2.0 Now Available for Download
December 28th, 2005 3:13 am
[…] If you are wondering what this new release will bring into the table of options available out there for us webloggers and if you have read through the official WordPress web site and still want some more I would recommend you take a look into 10 Things You Should Know about WordPress 2.0 by Darren Rowse over at ProBlogger. Over there you will find a comprehensive overview of what you can expect from this release and also get a grasp of some of the items we have been looking forward so much. […]
News » Blog Archive » Getting to know WordPress
December 28th, 2005 3:21 am
[…] Here is a link to some information on some of WordPress lesser known features: http://www.problogger.net/archives/2005/12/26/10-things-you-should-know-about-wordpress-20/ […]
cryptolife il blog di phillip bailey, diario di un Unix IT manager. » Wordpress 2.0 in italiano.
December 28th, 2005 4:53 am
[…] Come gia’ preannunciato sul sito wordpress-it.it , finalmente e’disponibile wordpress 2.0 localizzata in italiano.Da wordpress-it.it: La versione è scaricabile dal link presente nel menu del nostro sito, suggeriamo comunque di scaricarla dalla pagina del wiki ed importantissimo leggere la pagina di guida all’aggiornamento da 1.5.x a 2.0. 10 cose da sapere a proposito di wordpress 2.0 […]
My Technology Blog » Getting to know Wordpress
December 28th, 2005 5:31 am
[…] read more | digg story […]
henrie on wordpress » Blog Archive » 2005-12-28 -今日網摘
December 28th, 2005 6:57 am
[…] 10 Things You Should Know about WordPress 2.0: Blog Tips at ProBlogger WordPress 2.0推出了,唉~,這樣不斷的更新真是有點累呀。 tags: blog wordpress tip […]
Cybernetics » links for 2005-12-27
December 28th, 2005 1:31 pm
[…] 10 Things You Should Know about WordPress 2.0: Blog Tips at ProBlogger (tags: blogger wordpress Kyzen) […]
Cybernetics » links for 2005-12-26
December 28th, 2005 1:31 pm
[…] 10 Things You Should Know about WordPress 2.0: Blog Tips at ProBlogger (tags: blogger wordpress Kyzen) […]
links for 2005-12-27 at Lessons Learned
December 28th, 2005 3:44 pm
[…] 10 Things You Should Know about WordPress 2.0: Blog Tips at ProBlogger (tags: wordpress blogging) // Used for showing and hiding user information in the comment form function ShowUtils() { document.getElementById(”authorinfo”).style.display = “”; document.getElementById(”showinfo”).style.display = “none”; document.getElementById(”hideinfo”).style.display = “”; } function HideUtils() { document.getElementById(”authorinfo”).style.display = “none”; document.getElementById(”showinfo”).style.display = “”; document.getElementById(”hideinfo”).style.display = “none”; } […]
Czz’s BLOG » WordPress 2.0 Release
December 28th, 2005 4:45 pm
[…] 2.0 的变化可以看这边10 Things You Should Know about WordPress 2.0: Blog Tips at ProBlogger […]
Czz’s BLOG » WordPress 2.0 Release
December 28th, 2005 4:45 pm
[…] 2.0 的变化可以看这边10 Things You Should Know about WordPress 2.0: Blog Tips at ProBlogger […]
7ghz.net » Blog Archive » So Long 1.5x Hello 2.0
December 28th, 2005 5:01 pm
[…] Problogger — 10 Things you should know about Wordpress 2.0 […]
Lorelle on WordPress » WordPress 2.0
December 28th, 2005 5:24 pm
[…] ProBlogger - 10 Things You Should Know About WordPress 2.0 […]
Del.icio.us links for 12-27-2005 at the Dogberry Patch
December 28th, 2005 6:21 pm
[…] 10 Things You Should Know about WordPress 2.0: Blog Tips at ProBlogger While this entry might get a bit technical, it is only because thecoolest new features are under the hood. For new users who don’t feel like tinkering with code and expect a shiny new piece of software out of the box, fear not… you will not be disappo (tags: Blog, Wordpress, reference) […]
CHEESETOE.COM » Blog Archive » 10 Things You Should Know about WordPress 2.0: Blog Tips at ProBlogger
December 28th, 2005 6:40 pm
[…] 10 Things You Should Know about WordPress 2.0: Blog Tips at ProBlogger […]
Abdul Aziz’s Journal » Blog Archive » Wordpress 2.0 released
December 28th, 2005 7:18 pm
[…] Download Wordpress 2.0 here ProBlogger has a nice article about the new Wordpress 2.0 feature here And my take on Wordpress release and features here [link] […]
iFreak :: 10 cosas que debes saber sobre Wordpress 2.0 :: December :: 2005
December 28th, 2005 7:37 pm
[…] En este enlace tienes los diez puntos, por si tenías curiosidad. Comments » […]
Catatan » Wordpress 2.0!
December 29th, 2005 1:38 am
[…] Untuk lebih jelasnya, Anda bisa melihat 10 Things You Should Know About Wordpress 2.0. Ayo upgrade … berani? […]
Blog Marketing, Blog Promotion for Newbies » Blog Archive » The Jante Law
December 29th, 2005 4:05 am
[…] When Darren returns from his vacation he may or may not be surprised that Aaron Brazell’s post on ProBlogger “10 Things You Should Know About WordPress 2.0″ has been Dugg because Darren’s experienced this before. […]
WebCudgel.com » Blog Archive » Cool Links for 2005-12-28
December 29th, 2005 9:08 am
[…] 10 Things You Should Know about WordPress 2.0Wordpress Blog tutorial reference tools) […]
Blogging Pro China » Blog Archive » 对于WordPress 2.0你应该知道的10件事
December 29th, 2005 5:50 pm
[…] 10 Things You Should Know about WordPress 2.0,有兴趣的可以看看: […]
Tao道-博客黑洞 » wordpress20我已经成功升级
December 30th, 2005 2:33 am
[…] 发现一个WP的模板在线生成器 ,发图方便了一点,原来自己加大QUICK TAG BUTTON 都不见了,不知道哪有高手给解决一下这个问题,还是编辑那个.JS 文件吗?还有一个CSS教学站。给设计THEMES的同志。 10 Things You Should Know about WordPress 2.0。 10件关于WP20你应该知道的事情。 1 模版选择具有预览效果。 2 更清晰的用户和权限。 3 方便的导入其他blog程序。 4 提供了缓存机制。 5 改进的图片上传。 6 WordPress应用于各类社会网络。 7 Hooks and Filters。 8 内建的防Spam机制。 9 不要使用可视化编辑器。 10 WordPress越来越像CMS系统了。 […]
customerservant.com » Blog Archive » Things You Should Know About WordPress 2.0
December 30th, 2005 2:41 am
[…] Darren Rowse has posted a list of things (ten in all) bloggers should know about the latest incarnation of WordPress. Give it a read. […]
B-O-K » Blog Archive » WordPress 2.0 released
December 30th, 2005 3:04 am
[…] UPDATE: Heads up! 10 Things You Should Know about WordPress 2.0 […]
終極邊疆BLOG
December 30th, 2005 3:16 am
WordPress 2.0 released
看到 gslin 的WordPress 2.0 出版!,我也上 svn 去瞄了一下,果然 2.0 tag 已經冒出來了。
官方網站 已經正常了,不過 Download Page的文字很好玩地還是停留在 1.5.1,別管了,那大大的”Download .zip…
Los links del da… por Mardito »
December 30th, 2005 9:27 am
[…] […]
:: La vida pirata 2.0 :: Bericht aus Bonn…und der Welt // von Karsten Kneese » Blog Archive » Die ewige Baustelle // WordPress
December 30th, 2005 8:14 pm
[…] Unter anderem deshalb werde ich ziemlich bald auf WordPress 2 upgraden und dann mal schauen, was es so Neues mit sich bringt. […]
Locker’s WordPress » Blog Archive » WordPress 2.0Ӧ֪10
December 31st, 2005 12:58 am
[…] 10 Things You Should Know about WordPress 2.0ȤĿԿ […]
Life is about living your choices. » Blog Archive » Upgraded to WordPress 2.0
January 2nd, 2006 8:08 am
[…] Well… during the downtime just now, I went surfing again - and I read this article on the 10 things you should know about WordPress 2.0. Good. […]
Life is about living your choices. » Blog Archive » WordPress 2.0
January 2nd, 2006 6:45 pm
[…] Well… during the downtime just now, I went surfing again - and I read this article on the 10 things you should know about WordPress 2.0. Good. […]
C’est La Vie » Blog Archive » Wordpress 2.0 is awesome!
January 2nd, 2006 7:32 pm
[…] I just read a post on problogger.net about some of the new features in WordPress 2.0. If you are interested you should check it out. […]
YWAM Information Technology
January 3rd, 2006 2:38 am
More on WordPress
I have been checking out the new version of WordPress and thought you might enjoy reading the following blog. I agree with what he has written and particularly the bit he wrote about tinyMCE. I am really trying to like the editor, but really find it
Delhi Web Designer
January 3rd, 2006 2:40 am
Hi there,
Thanks for the insightful post. I,ve been contemplating giving the new Wordpress a try for a while now and your article comes in very handy for someone like me.
Thanks for sharing your insights with us all.
Keep the information flowing! :-)
Warm regards,
Rishu
Emmense Technologies - Helping You Lead.
January 3rd, 2006 11:34 am
[…] 10 Things You Should Know About WordPress 2.0 (published Dec 26, 2005) […]
TechGadgetBlog
January 3rd, 2006 7:52 pm
Aaron, thanks for sharing the timely post :-) I’ve recently started using wordpress — literally a week or two before 2.0 was released. Anyway, I’ve been looking at the pros and cons of upgrading to 2.0. Your post here gave me lots of good food for thought… Thanks :-)
desparoz On The Go » links for 2006-01-03
January 3rd, 2006 11:22 pm
[…] 10 Things You Should Know about WordPress 2.0: Blog Tips at ProBlogger (tags: Web2.0 blogging technology WordPress) […]
Technosailor » WordPress Caching
January 4th, 2006 12:46 pm
[…] If you read 10 Things You Should Know About WordPress 2.0, you know one of my key gripes with the new software is in the area of caching. […]
April
January 4th, 2006 4:13 pm
I agree with no. 9, bigtime. I totally disabled it within two days.
Knuts blogg » Blog Archive » 10 nyttige tips for Worpress 2.0
January 5th, 2006 11:35 pm
[…] 10 Things You Should Know about WordPress 2.0: Blog Tips at ProBlogger […]
Knuts blogg » Blog Archive » 10 nyttige tips for Worpress 2.0
January 5th, 2006 11:35 pm
[…] 10 Things You Should Know about WordPress 2.0: Blog Tips at ProBlogger […]
Backwords » Blog Archive » Wordpress 2.0 Is Around The Corner
January 9th, 2006 11:11 pm
[…] … and you need to know what are it’s new features, don’t you? […]
A Mighty Rushing Wind » Blog Archive » ProBlogger pro-Holy Ghost
January 10th, 2006 5:12 am
[…] Just found out problogger Is pentecostal. […]
The TechWise Idea-Machine » Quickly adding screen-captured images to your blog
January 11th, 2006 12:05 pm
[…] http://www.problogger.net/archives/2005/12/26/10-things-you-should-know-about-wordpress-20/ Permalink […]
Wordpress 2.0 - s/y Lovefool.nl
January 15th, 2006 11:59 am
[…] Over deze nieuwe 2.0 versie van Wordpress vond ik een interessant stuk (via R-win.com - die nog met MT werkt, vreemd genoeg). En al eerder konden we lezen wat er zou gebeuren. Mijn eerste indruk is dat de back-end een flinke partij verbeterd is. Er is duidelijk (nog) meer nadruk gelegd op usability en op de conversie van gebruikers van andere systemen: overzichtelijker, veel functionele (!) AJAX, een prima WYSIWYG-editor en een prominente import-functie. Ik denk dat ik nog wel een gebruiker weet, die vóór eind februari overgaat van MT naar WP! (Of niet, GJ?) […]
JoJo Developer Press » Blog Archive » WordPress
January 21st, 2006 5:38 am
[…] I found a good link 10 Things You Should Know About WordPress 2.0 have a read. […]
Because I Write » More about WP2.0
January 24th, 2006 7:36 pm
[…] This is quite a comprehensive remark about 2.0 at The Republic of T. You should also read the 10 things you should know about 2.0 by Problogger. […]
Information Technology » Getting to know Wordpress
January 27th, 2006 2:47 am
[…] read more | digg story Get small business ideas for your online business! […]
Deborah Woehr » Rich Text Editor in WordPress 2.0
January 27th, 2006 8:34 am
[…] Excerpted from Problogger’s Ten Things You Should Know About WordPress 2.0 There are a couple problems I see, as a web purist, with this approach. TinyMCE, though it will probably continue to be improved, creates really shoddy HTML in some cases. Empty tags, funky cut-and-paste, and the now-internally-infamous shoddy image feature makes it great for quick and dirty entries but poor for day-to-day usage. I don’t use Safari, the preferred browser for most Mac users, so I can’t be sure if it works yet for you Safari users, but last time I recall it didn’t. […]
Ivan Minic
January 29th, 2006 5:13 am
Wordpress is great piece of software :)
Christian’s Blog - LifeStyle|Food|Gadgets|Ideas|Me » 5 little plugins I like for wordpress
February 11th, 2006 6:55 pm
[…] No doubts, you’ve read the 10 Things You Should Know About Wordpress 2.0 and 5 Little Things I like About WordPress . So here are some of the plugins I found that makes Wordpress even better: […]
flys
February 18th, 2006 3:12 am
Very helpfull article and great blog resource !!!
links for 2006-02-27 « Cero’s LinksBlog
February 27th, 2006 9:20 pm
[…] 10 Things You Should Know about WordPress 2.0: ProBlogger Blog Tips (tags: Wordpress blogging) […]
: ProBlogger Blog Tips
March 9th, 2006 5:21 pm
[…] […]
Aaron Brazell - New ProBlogger Columnist: ProBlogger Blog Tips
March 10th, 2006 11:52 am
[…] Aaron won’t be a stranger to many of you - he’s already written three popular posts here (10 things you should know about WordPress 2.0, Tag, You’re It! Leveraging Tagging for Your Blog and Kick Your RSS: Jumping on the Syndication Bandwagon) he’s also the blogger behind Technosailor and is one of our b5 bloggers (editing our Sports Channel). […]
WordPress 2.0.2 Revealed: ProBlogger Blog Tips
March 15th, 2006 11:04 pm
[…] Back at the end of December, I wrote an article for ProBlogger entitled 10 Things You Should Know about WordPress 2.0. Three(ish) months and 2 security/bugfix releases laters, I think WordPress 2.x deserves another look - a follow up, if you will. […]
www.eamonlane.com » Wordpress
March 28th, 2006 8:17 am
[…] To read more about word 2.0 best to read 10 Things you Should Know About Wordpress 2.0 Share and Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages. […]
Notes from the Garden » Tips for WordPress 2.0
April 9th, 2006 5:52 am
[…] 10 Things You Should Know about WordPress 2.0: ProBlogger Blog Tips […]
Cybersome.com Blog » 10 Things You Should Know about WordPress 2.0
April 17th, 2006 11:00 pm
[…] […]
Rasheq Rahman [dot] com » Blog Archive » I’m back and now in WordPress 2.0.2
April 27th, 2006 8:02 am
[…] However this morning, I retraced my steps a little bit and with the help of the Wordpress forums and Google, I was able to piece together a hack for my wp-config.php file. I’m still not sure why this works but the hacks turn off magic_quotes_gpc and disable the Wordpress cache. I hope if any Wordpress gurus are reading they will comment and shed some light on what these hacks do. Nonetheless, my site is up and running again, so please visit once more. […]
internet marketing lessons
May 4th, 2006 5:40 pm
hi, does someone how to install properly Wp-PostRating plugin x wordpres 2.0 ?
AlexPlus - Персональный Блог » links for 2006-05-05
May 5th, 2006 5:36 pm
[…] 10 Things You Should Know about WordPress 2.0: ProBlogger Blog Tips (tags: wordpress) […]
Business Cards
May 17th, 2006 5:15 am
Great article! Darren, you need to post the top 10 plugins for wordpress now!
-Brandon Hopkins
Aaron Brazell
May 17th, 2006 5:24 am
Darren did already… in fact, 2 days ago…
http://www.problogger.net/?p=1875
» Best Blog Sotware - Wordpress Review Part #1 | Internet Marketing Consultant Charleston SC | South Carolina SEO Firm | Search Engine Optimization
June 3rd, 2006 11:37 pm
[…] I’ll go into more about why I love open-source later, but Wordpress’ source code (the program itself) is open to be changed by anyone. This means that we have thousands of the best programmers around the world tweaking the software on their own dime to make it better for everyone. These modifications to security and functionality are released periodically via updates. Just a few months ago they released the big “2.0″ update which was a pretty radical change to Wordpress. More recently, Wordpress released 2.03 the other day which adds minor changes to the functionality. For those of you using Cpanel or some other automatic installer, these updates should be configured by your provider. This makes updates as simple as a click of the mouse. […]
Fixed! » Hip Hop Podcast
June 20th, 2006 10:50 am
[…] There we go! I’ve now upgraded to Wordpress 2.0 (here’s a ProBlogger review of the changes). In the coming week, I’ll be doing one of my regular shows and, at week’s end, speaking at Podcasters Across Borders, which just recently sold out! I’ll make sure to let you guys know about the content of that conference as it becomes available. See you then! […]
RuidoDigital » 10 cosas que debes saber de WordPress 2.0
August 4th, 2006 7:04 am
[…] El contenido de este post está basado en 10 Things You Should Know about WordPress 2.0, publicado por Darrem Rowse en ProBlogger. […]
okaysoul@blog » Blog Archive » wordpress rinks
September 28th, 2006 2:41 pm
[…] 10. 워드프레스에 대해 알아야 할 10가지 […]
drew
November 4th, 2006 8:47 am
Hi,
I’m writing to let you know of an audio WordPress widget we’ve just released. The Evoca Browser Mic lets bloggers get voice recordings from their readers right from their WP blog. With any computer mic, and by clicking on “record”, a reader can leave a voice comment. An interesting way of putting a voice behind the online community. This widget was launched this week.
You will find some examples of the Evoca Browser Mic being used on WordPress blogs at:
http://www.drewandbritt.org/
http://dizzy-girl.net/
The Evoca Browser Mic plugins for WordPress can be found at:
http://codex.wordpress.org/Plugins/Audio
More about the Evoca Browser Mic on our blog:
http://evoca.net/blog/?p=107
A couple of blogs talking about the plug-in:
http://markjaquith.wordpress.com/2006/10/20/evoca-browser-mic/
http://mashable.com/2006/11/03/evoca-launches-voice-comments-for-myspace-blogs/
Thank you in advance for helping spread the word, please let me know if you have any questions.
Cheers!
drew.
Jamie
December 24th, 2006 2:01 pm
What about Wordpress-MU? Any review of it? And what’s the difference between Wordpress-MU and Wordpress Manager DX2? Thanks for the articles you have here! :)
Life Is About Living Your Choices » WordPress 2.0 - Weblog - KianAnn.com
December 26th, 2006 11:01 pm
[…] Well… during the downtime just now, I went surfing again - and I read this article on the 10 things you should know about WordPress 2.0. Good. […]
links of the day at hbrendanflynn.com
January 3rd, 2007 1:35 pm
[…] CSS Cheat Sheet New Years Weight Loss Hacks 10 Things You Should Know about Wordpress 2.0 Rig of the year (so far) Filed under links. | Tags: css, lifehack, osx, wordpress. var blogTool = “WordPress”; var blogURL = “http://hbrendanflynn.com”; var blogTitle = “hbrendanflynn.com”; var postURL = “http://hbrendanfly