10 Things You Should Know About WordPress 2.1

by Aaron Brazell on January 21, 2007 · 243 comments

Back in December of 2005, I was filling in for Darren Rowse at ProBlogger and I wrote an entry that was very highly read and commented on. The topic was 10 Things You Should Know About WordPress 2.0. The occasion was the release of the much-waited for release of the current major release of WordPress (We’re up to 2.0.7 but the “dot releases” have all been security/bugfix releases).

Tomorrow (January 22, 2007), WordPress 2.1 will be released and it signifies the first major release since the 2.0 branch was launched. As is typical of major releases, they do not only address security/bugfixes but they release new functionality.

So in the spirit of the original article, I give you ten things you should know about WordPress 2.1.

First though, it’s notable to point at the progress the entire WordPress community has made in the last year since 2.0 was released. Many things, such as themes, have been improved upon. For instance, theme authors can take advantage (and now do!) of screenshot.png, a screenshot image that can be included in a theme folder that provides a visual representation of what the theme is. This ability was implemented in 2.0 but since most themes were designed for WordPress 1.5 at the time, most themes did not have this feature implemented.

In addition, the addition of WordPress widgets as an add-on has provided theme authors and bloggers a phenomenal way to simply drag and drop sidebar elements. This takes the mystique out of placing modules in a sidebar when the vast majority of the WordPress users really don’t know how (or want to) mess with the HTML that makes up a sidebar.

Testing has been given serious effort with the release of WordPress.com hosted blogs. You just thought you were getting a free no fuss, no muss blog built on WordPress but what you little guinea pigs may not have known was that it has been the testing bed of most of the WordPress development code. It gives developers a real-time, real-life window into what works and what doesn’t and allows for extensive non-technical testing. Both WordPress 1.5 and 2.0 were plagued with bugs that were not thoroughly vetted out prior to release. While WordPress.com does not guarantee a bug-free release, the chances and scope of bugs are significantly reduced.

So what is new in WordPress 2.1?

Auto-save of Drafts – WordPress 2.1 adds an autosave function that is automatically implemented when writing new drafts. This functionality uses AJAX and operates without new pageloads. The title of the post must be filled out in order for autosaving to occur.

Better Image Upload Handling – If you do any image uploading under the 2.0 branch, you’ve probably been a little frustrated by the confusing menu that becomes available for those images. It was a bit of “back to basics” to implement radio-button style visual prompts assisting in the handling of these images. You can even Edit image attributes after the image is uploaded.picture-3.png

Deprecation of $tableposts, $tablecomments, etc – Deprecation is a mild word. Typically in software development, deprecation means that it is no longer a recommend approach but for backwards compatibility, the function or variable still exists. In this case, elimination would be a more appropriate term. This is going to affect a lot of people because there are still many plugins out there using these variables when generating queries within plugins. Instead, the method for querying wordpress table sis to use the $wpdb global. For instance, $tableposts should be termed $wpdb->posts. $tablecomments should now be $wpdb->comments. And so on. Plugins using the old format will cause SQL errors that might be displayed on a blog or simply break a blog altogether. I had a post recently on the WordPress Development blog which describes these changes.

Update: According to Ryan Boren from WordPress, these variables have been “ressurrected” andplaced in deprecated.php. This is critical as it means that most plugins that may have broke before, will be fine now.

Plugin Compatibility – As mentioned above, many plugins will no longer work in 2.1 due to deprecation of database table variables. However, whenever there is a new version of WordPress, the other possible “plugin breaks” extend farther. Fortunately, the WordPress community has been hard at work testing plugins with 2.1 determining compatibility. You can find a list of backwards-compatible plugins at the Codex.

Native WordPress Migration Functionality – I unequivocally can say that when I released the Wordpress-to-Wordpress migrator, I had no idea that it would bring me as much traffic or that the tool would recieve such warm welcome. So, it’s with mixed emotions that I say goodbye to the vast amount of traffic I recieved. The Wordpress migration tool was released to essentially mirror functionality that is in WordPress 2.1 (and thus WordPress.com). So while the 2.0 branch will remain available through 2010 (it is available in Debian Linux now) , the new 2.1 branch introduces the functionality that I provided to 2.0 customers with my tool.

MySQL Version – It should be noted that although most hosting providers have upgraded their MySQL version to 4.0+, many are still lingering at MySQL 3.23. WordPress 2.1 eliminates support for this older version of MySQL. An easy way to determine what version you are running is to drop this in a file called testdb.php and drop inside your web root:

< ?php
// Replace with your database connection info
mysql_connect("localhost","dbuser","dbpassword");
echo mysql_get_server_info();
?>

New Visual Editor Interface – A big problem (to many) in the WordPress 2.0 branch was the Rich Text Editor (RTE) powered by TinyMCE. I believe the RTE was a good idea but was before it’s time. Thankfully, the developers have heeded the concerns brought to bear on the RTE in WordPress 2.0 and have significantly improved it. Notably, there is now a tabbed interface in the Write screen that will allow bloggers to switch between the two views seamlessly.

picture-4.png

Merging of Links and Categories – This is another one of those things that tend to be more of a backend database thing, but there are notable semantics to be pointed out. In previous versions of WordPress, links and categories were handled as two separate entities. Links were seen as a thing used solely to power a blogroll and Categories were seen as a way to solely compartmentalize posts. In WordPress 2.1, the development philosophy shifted in such a way to recognize that these things actually tend to serve nearly similar purposes. While those philosophies can be discussed in other posts, the important thing to recognize is that the Categories table is now prepopulated with a Blogroll category and all links are assigned, by default, to the blogroll category. Folks who are upgrading will have this association made as part of the upgrade process.

Privacy Features – Probloggers will not find this feature particularly useful, nor will most bloggers who desire exposure. However, in WordPress 2.1, there are privacy features which allow you to block your site from search engines and directories. This is useful, however, if you were to want to keep a blog for family or friends or a purely personal blog intended for your own self.

Nonces – This is not really new in WordPress 2.1 but it is new since the original WordPress release. In fact, nonces were introducted in WordPress 2.0.3 and they are significant security items. It applies not only to WordPress but plugins so plugin authors take note of nonces. Mark Jaquith [fixed typo. Sorry Mark!] has more on nonces and how to use them. He details the specific implementation in a way my grandmother (who is dead) could understand. In a nutshell, nonces are unique “passwords” embedded in the comment moderation emails, among other things that prevent YOU from damaging YOUR blog. Each request is assigned a nonce which only lets ONE person do ONE thing within your wp-admin (i.e. approve a comment or delete a post). This replaces the “Are you sure?” dialog.

Table of contents for WordPress Release

  1. 10 Things You Should Know About WordPress 2.0
  2. 10 Things You Should Know About WordPress 2.1
  3. WordPress 2.1 Gotchas
  4. 10 Things You Should Know About WordPress 2.2

{ 175 trackbacks }

וורדפרס עברית » ארכיון » מה צפוי בוורדפרס 2.1
January 21, 2007 at 7:10 pm
Emerging Earth - Things to Know About WordPress’ Next Release
January 21, 2007 at 7:23 pm
=) Bnpositive’s Blog » WordPress 2.1 Release Information
January 21, 2007 at 7:29 pm
w4 network - technology, gadgets, web 2.0, smartphones, wordpress, mobile, blogs, news, money & affiliates » Blog Archive » 10 Things You should Know About WordPress 2.1 » Technology, Blogging and New Media
January 21, 2007 at 8:46 pm
The Flow of Consciousness » Wordpress 2.1 features - finally, autosaving!
January 21, 2007 at 9:19 pm
Whatever I Feel Like » WordPress 2.1 Release - Amy's blog on life, love, recovery, beauty, TV and lots of other randomness
January 21, 2007 at 9:23 pm
Jaslabs: High performance php » wordpress 2.1 to be released on Monday
January 21, 2007 at 9:24 pm
Francesco Biacca blog: riflessioni sul mondo della tecnologia e sulla sfera personale » Wordpress 2.1
January 21, 2007 at 9:50 pm
WordPress 2.1 - What You Should Know
January 21, 2007 at 9:58 pm
10 Things You should Know About WordPress 2.1 | BTT | Blog The Tech
January 21, 2007 at 10:15 pm
import this. » Blog Archive » WordPress 2.1 tomorrow
January 21, 2007 at 10:46 pm
WordPress 2.1 will be released tomorrow. 10 things you need to know! « Digged Stories
January 21, 2007 at 11:05 pm
Jimiz.net - Jim Becher on the web » Blog Archive » WordPress 2.1 - Home of IIS Reporter
January 21, 2007 at 11:10 pm
Weblog Tools Collection » Blog Archive » 10 Things about WordPress 2.1
January 21, 2007 at 11:10 pm
411 on Wordpress 2.1 » JaypeeOnline
January 21, 2007 at 11:33 pm
Techiegeeks.com - » Wordpress 2.1 out tomorrow
January 21, 2007 at 11:36 pm
AlbanyWiFi.com » Blog Archive » 10 Things You should Know About WordPress 2.1
January 21, 2007 at 11:38 pm
virtus ad aethera tendit » 10 Things You should Know About WordPress 2.1
January 22, 2007 at 12:41 am
The Lyceum Project » WordPress 2.1
January 22, 2007 at 12:44 am
HART-Empire.com » Finally: A Review of The Plugins Activated In My Blogs (HART-EMPIRE NETWORK)
January 22, 2007 at 12:46 am
Problog Quest » Blog Archive » Things worth knowing on the Eve of Wordpress 2.1 Release
January 22, 2007 at 12:56 am
WordPress 2.1 looms… » Solo Technology
January 22, 2007 at 1:14 am
Sunday Quicklinks &laquo Techzoogle
January 22, 2007 at 1:20 am
john bollwitt blog » WordPress releases and betas
January 22, 2007 at 1:25 am
WordPress 2.1 will be released tomorrow. 10 things you need to know! at AY:HX - Au Yong’s Blog
January 22, 2007 at 1:58 am
Nirlog.com » Blog Archive » 10 Things You should Know About WordPress 2.1
January 22, 2007 at 1:58 am
MK Web - Blog » WordPress 2.1 will be released tomorrow. 10 things you need to know!
January 22, 2007 at 2:02 am
» Wordpress 2.1 sort aujourd’hui ! Jeremie Berrebi Blog - Shopping, E-commerce & Internet 2.1
January 22, 2007 at 2:27 am
WordPress 2.1 at chilibean
January 22, 2007 at 2:38 am
nova maneira de blogar at Caveat Emptor
January 22, 2007 at 2:38 am
Open WordPress » WordPress 2.1 to be released tomorrow
January 22, 2007 at 2:44 am
WordPress 2.1 and what you need to know at 1FPS
January 22, 2007 at 2:48 am
| F A T M A N | » Blog Archive » Wordpress 2.10
January 22, 2007 at 2:59 am
einfach persoenlich Sideblog
January 22, 2007 at 3:02 am
Kotyk.com » 10 Things about Wordpress 2.1
January 22, 2007 at 3:15 am
Wordpress 2.1 is closer than you think | eDragonu - the choice of a personal path
January 22, 2007 at 4:58 am
MyAppleStuff » 10 Things You should Know About WordPress 2.1
January 22, 2007 at 5:01 am
WordPress 2.1 - new and useful features » Inspiration Bit
January 22, 2007 at 5:06 am
Wordpress release version 2.1 Stable | Web News
January 22, 2007 at 5:23 am
Újdonságok a 2.1-ben | WordPress Magyarország
January 22, 2007 at 6:01 am
Net 2.0 » Blog Archive » 10 things about Wordpress
January 22, 2007 at 6:27 am
10 stvari o WordPress 2.1 - Blogowski
January 22, 2007 at 6:33 am
期待wordpress2.1 at 好吃不如饺子
January 22, 2007 at 7:30 am
Freakitude Technology Blog » Blog Archive » Hot Picks - January 22, 2007
January 22, 2007 at 8:34 am
Wired For Gadgets » Blog Archive » Wordpress 2.1 to be released TODAY
January 22, 2007 at 8:41 am
/dev/nikc/blog » Blog Archive » Kymmenen asiaa WordPress 2.1:stä
January 22, 2007 at 8:43 am
Frihetens vingar » Blog Archive » Idag släpps Wordpress 2.1
January 22, 2007 at 9:00 am
FreeCharity.org.uk » Impending release of Wordpress 2.1
January 22, 2007 at 9:12 am
Through My Lense » Blog Archive » Upgrading to WordPress 2.1
January 22, 2007 at 9:31 am
Wordpress 2.1: more than just a bugfix » All Tips and Tricks
January 22, 2007 at 10:14 am
Novidades do Wordpress 2.1 » Teknologico
January 22, 2007 at 10:16 am
10 Fakten die man über Wordpress 2.1 wissen sollte » Bloganbieter.de
January 22, 2007 at 10:23 am
Wordpress Releases WP 2.1 - 9tin20.com
January 22, 2007 at 10:59 am
nonsmokingarea.com » Blog Archive » roundup for 2007-01-22
January 22, 2007 at 11:03 am
sremington.com » Word Press 2.1
January 22, 2007 at 11:12 am
WordPress 2.1 due out later today at Tom Raftery’s I.T. views
January 22, 2007 at 11:17 am
Dmitriy’s Blog » Wordpress 2.1
January 22, 2007 at 11:30 am
GfxDizayn » Ortaya karışık…
January 22, 2007 at 11:34 am
DELETE YOURSELF! » Blog Archive » WordPress 2.1 - к чему готовиться?
January 22, 2007 at 12:21 pm
What’s New in Wordpress 2.1? :: Cucirca.com
January 22, 2007 at 12:58 pm
TechDip » 10 Things You should Know About WordPress 2.1
January 22, 2007 at 1:21 pm
wehuberconsultingllc.com » Blog Archive » 10 Things You should Know About WordPress 2.1 » Technology, Blogging and New Media
January 22, 2007 at 1:24 pm
ProBlog
January 22, 2007 at 1:51 pm
10 Things You should Know About WordPress 2.1 at BlogThe.Net
January 22, 2007 at 2:11 pm
Linux For Dummies » Wordpress 2.1
January 22, 2007 at 2:22 pm
Link Roundup (1/22/2007) » The Bivings Report
January 22, 2007 at 2:37 pm
7 seconden » 2.1
January 22, 2007 at 3:22 pm
10 Things You Should Know About WordPress 2.1 : Losing it[1]
January 22, 2007 at 3:58 pm
Novedades de Wordpress 2.1 | Macropsia
January 22, 2007 at 4:21 pm
fullyproductive.com » Blog Archive » New Wordpress Release
January 22, 2007 at 4:22 pm
The Protagonist » Blog Archive » Wordpress 2.1 - Ten Things
January 22, 2007 at 4:26 pm
Čo prináša blogerom nový Wordpress 2.1? na depi.sk - IT & Life Weblog
January 22, 2007 at 4:50 pm
Mayor compatiblidad de los plugins de Wordpress 2.0.x en Wordpress 2.1 « Soporte-Wordpress
January 22, 2007 at 4:51 pm
  10 Things You Should Know About WordPress 2.1 by Blogging Pro
January 22, 2007 at 4:57 pm
Andrea Beggi » Cose da sapere su WordPress 2.1
January 22, 2007 at 5:08 pm
升级到 Wordpress 2.1 RC2 | 巧克力工厂 (Beta3)
January 22, 2007 at 5:24 pm
» Las novedades de Wordpress 2.1 =(o.o)= ctrl-F5
January 22, 2007 at 5:53 pm
WordPress 2.1 Scratches All My Itches at The Gong Show
January 22, 2007 at 6:26 pm
WordPress 2.1 Released - JakeJarvis.com
January 22, 2007 at 7:03 pm
Wordpress 2.1 Now Available
January 22, 2007 at 7:16 pm
Niklas’ blog » Blog Archive » WordPress 2.1 hits like a frikkin’ rock
January 22, 2007 at 7:45 pm
SearchRoads » final fantasy lesbian WordPress 2.1 will be released tomorrow. 10 things you need to know!
January 22, 2007 at 7:52 pm
Deep Jive Interests » Recommended Reads for January 22, 2007
January 22, 2007 at 8:01 pm
EdVentures in Technology » Daily Links 01/22/2007
January 22, 2007 at 8:10 pm
WordPress 2.1 has been released, and it may be the perfect platform for real estate web sites as well as weblogs . . . | BloodhoundBlog | There's always something to howl about...
January 22, 2007 at 8:47 pm
testblog » links for 2007-01-23
January 22, 2007 at 8:50 pm
Low Mileage Food » Nifty Stuff From Around the Web
January 22, 2007 at 9:25 pm
Wordpress 2.1 Released at DieselFueled
January 22, 2007 at 10:37 pm
Jeren testiblogi » Blog Archive » links for 2007-01-23
January 22, 2007 at 10:41 pm
苦牢之最後一年
January 22, 2007 at 10:43 pm
Clickfire Webmaster News » Wordpress 2.1 Released
January 22, 2007 at 10:54 pm
» Blog Archive » links for 2007-01-23
January 22, 2007 at 11:23 pm
WordPress 2.1 is out » Ajay - On the Road called Life!
January 22, 2007 at 11:44 pm
Wordpress 2.1 Plugin Testing » BloggerDesign : Design Optimization Usability from TopRank Online Marketing
January 23, 2007 at 12:03 am
Madthiu’s PALACE :: 十件你應該認識 Wordpress 2.1 的事
January 23, 2007 at 1:42 am
WordPress 2.1 - eindelijk at Enthousiasmeren
January 23, 2007 at 2:16 am
Wordpress 2.1 è tra noi
January 23, 2007 at 3:55 am
Nailos » Blog Archive » WordPress 2.1 “Ella”
January 23, 2007 at 4:08 am
Wordpress 2.1 - “Ella” - veröffentlicht bei im web gefunden
January 23, 2007 at 4:16 am
WP 2.1 - Safe for your blog? at Technological Winter
January 23, 2007 at 4:31 am
Swank Web Style » 10 things you should know about WP 2.1
January 23, 2007 at 4:34 am
Matt Cutts: Gadgets, Google, and SEO » What did I miss last week?
January 23, 2007 at 4:40 am
Wordpress 2.1 veröffentlicht | Mallorca
January 23, 2007 at 4:49 am
If It’s Free, There Must Be a Catch! » Jack Of All Blogs
January 23, 2007 at 5:16 am
Pragmatic Dictator » Blog Archive » links for 2007-01-22
January 23, 2007 at 7:01 am
The Blog Columnist » Blog Archive » Trying out WordPress 2.1 - First Thoughts: A Bit of a Yawn
January 23, 2007 at 7:41 am
интернетные штучки » Вышла новая версия Wordpress
January 23, 2007 at 8:10 am
WordPress: Version 2.1 ist angekündigt :: frank huncks blog
January 23, 2007 at 8:16 am
ve WordPress v2.1 » Acemi Blogcu
January 23, 2007 at 9:13 am
Nick Starr.com : Nick Starr dot com » Wordpress 2.1 “Ella” Released
January 23, 2007 at 9:23 am
Wordpress 2.1 Released
January 23, 2007 at 10:58 am
tanjadebie.nl » Alweer een Wordpress update, wel of niet doen?!
January 23, 2007 at 11:08 am
links for 2007-01-23 · Lawsy.net
January 23, 2007 at 12:12 pm
Learning Reiot » Blog Archive » Wordpress 2.1 업그레이드?
January 23, 2007 at 12:40 pm
ZB Now on WordPress 2.1 - from The Zero Boss by Jay Andrew Allen
January 23, 2007 at 1:24 pm
links for 2007-01-23 - Aspiring Spirit
January 23, 2007 at 3:28 pm
WordPress 2.1 Plugin Compatability
January 23, 2007 at 3:54 pm
the8thsign » Wordpress 2.1 Released
January 23, 2007 at 4:13 pm
SEOdisco | SEOdisco Upgraded to WordPress 2.1 Ella
January 23, 2007 at 4:20 pm
Toile-filante » Blog Archive » La toile en vrac - episode 6
January 23, 2007 at 6:08 pm
The Social Programmer - Craig Murphy - author, blogger, community evangelist, developer, speaker » WordPress 2.1
January 23, 2007 at 8:45 pm
Salgalaluna » Blog Archive » links for 2007-01-24
January 23, 2007 at 9:07 pm
WordPress 2.1 to be released tomorrow -- Open WordPress
January 24, 2007 at 12:14 am
BuzzTips.net » 10 Things You Should Know About Wordpress 2.1
January 24, 2007 at 12:27 am
WordPress Wednesday: WordPress 2.1 and More at The Blog Herald
January 24, 2007 at 1:59 am
DOCUMENTDUMP.com ^ RWCS.COM » Blog Archive » WordPress Wednesday: WordPress 2.1 and More
January 24, 2007 at 2:47 am
ArtLung Blog » Daily Links
January 24, 2007 at 3:24 am
einfach persoenlich Weblog
January 24, 2007 at 8:16 am
Quoi9 » Matt the knife nous donne WP 2.1
January 24, 2007 at 10:02 am
» WordPress 2.1 Out » developedtraffic.com
January 24, 2007 at 11:11 am
Using wp_list_bookmarks in WordPress 2.1 - Recommended Web Tools
January 24, 2007 at 3:27 pm
The One Thing I Needed to Know About WordPress 2.1 Upgrade - Tech Mentat
January 24, 2007 at 3:59 pm
¿Cómo saber que versión MySQL usas? « Soporte-Wordpress
January 24, 2007 at 9:11 pm
» Laundry list of WP v2.1 important “stuff” TawnyGirlGrafix Adult Web Design
January 25, 2007 at 10:03 am
Fox Haven Journal » Blog Archive » Technosailor’s “10 Things You Should Know about WordPress 2.1″
January 25, 2007 at 4:03 pm
links for 2007-01-25 » The Gryphin Experience
January 25, 2007 at 5:27 pm
Online Media Beat » WordPress 2.1 is here
January 25, 2007 at 7:52 pm
WordPress 2.1 Gotchas » Technology, Blogging and New Media
January 25, 2007 at 8:46 pm
DigiZen: Un blogfesor aprendiendo » Diez razones personales para no actualizar a WordPress 2.1
January 25, 2007 at 9:14 pm
IT Support Small Medium Business » wordpress 2.1 : how to switch to WYSIWYG editor or Visual Editor
January 25, 2007 at 10:08 pm
Invisible Inkling » Blog Archive » I covet your WordPress 2.1
January 26, 2007 at 12:55 am
Maria Langer, the Official Web Site* » links for 2007-01-26
January 26, 2007 at 10:50 am
Henry Cleaver
January 26, 2007 at 2:23 pm
Unofficial DreamHost Blog » Blog Archive » WordPress 2.1 is out - and ready as an one-click upgrade…
January 26, 2007 at 3:42 pm
Adam’s R&R » My Upward Traffic Trend
January 26, 2007 at 4:19 pm
Y tenemos WordPress 2.1 — yukei.net
January 26, 2007 at 9:19 pm
Upgrading to Wordpress 2.1…a How To guide with links
January 26, 2007 at 10:26 pm
WordPress 2.1 升級成功 « Left Mind: Blog
January 27, 2007 at 12:00 am
blog.marcoha.com » Blog Archive » Upgraded to Wordpress 2.1
January 27, 2007 at 7:04 am
Deborah Woehr » Blog Archive » WordPress 2.1 has Launched
January 27, 2007 at 12:33 pm
cb.blog » Blog Archive » Wordpress 2.1 Upgrade
January 27, 2007 at 3:06 pm
WordPress 2.1 heading our way tomorrow -- Brandon Wood
January 27, 2007 at 3:15 pm
10 Things You should Know About WordPress 2.1 - Knuts blogg - Technoscience
January 27, 2007 at 8:04 pm
E.Webscapes Blog Design Studio
January 27, 2007 at 10:15 pm
Working at Home on the Internet
January 28, 2007 at 7:00 am
TZG2.0 | FASTER, INTERNET! KILL! KILL!
January 28, 2007 at 7:50 am
Wordpress 2.1 è tra noi at lalui vers. 2.0
January 28, 2007 at 11:30 am
Around the web | alexking.org
January 28, 2007 at 1:11 pm
What I now know about Wordpress 2.1 | Sirius Stuff
January 28, 2007 at 3:15 pm
danvk.org » WordPress 2.1
January 29, 2007 at 5:07 am
My Stuff :: wordpress 2.1
January 31, 2007 at 3:53 am
Weekly Brief
January 31, 2007 at 5:23 am
BlogAjuda » 9 coisas que você deveria saber sobre o WordPress 2.1
January 31, 2007 at 12:21 pm
All Spin Zone » ASZ Upgrade - Wordpress 2.1
January 31, 2007 at 2:36 pm
Wordpress autosaving (at wongaBlog)
February 1, 2007 at 5:27 am
Quick Links - 02 February 2007 | Isaak’s World
February 2, 2007 at 12:49 am
Fixmood » Blog Archive » WordPress 2.1 is out
February 2, 2007 at 3:44 am
Nirlog.com » Blog Archive » List of Blogging Checklists
February 2, 2007 at 10:31 am
Salatti.NET » Last 15 days recap
February 4, 2007 at 5:22 am
Perfect Blogger
February 8, 2007 at 6:33 pm
sYoKz bLoG » Blog Archive » 10 Things You should Know About WordPress 2.1
February 9, 2007 at 9:58 am
Froutopia » Hello Ella
February 11, 2007 at 3:54 pm
mhinze.com » Blog Archive » links for 2007-01-29
February 19, 2007 at 9:00 am
Listerate » Blog Archive » 10 Things You should Know About WordPress 2.1
February 26, 2007 at 10:30 pm
The Digg Bury Effect » Technology, Blogging and New Media
February 28, 2007 at 12:41 am

{ 68 comments }

1 Aaron Brazell January 23, 2007 at 3:29 pm

You probably have the option set on your profile page to not use the Visual Text Editor.

2 CIO Jerry January 23, 2007 at 3:52 pm

I thought of that too, so I checked all the options under the Admin’s dashboard, esp. options/writing. Can you be more specific on where this ‘profile page’ is?

3 CIO Jerry January 23, 2007 at 4:22 pm

shame on me. I missed it. Thanks, Aaron. I skipped the whole option/users tab, thinking it is for user account management.
Anyhow, I was using Visual Text Editor before the upgrade. So, the upgrade somehow took it away. Hate to think it could be caused by a reset to default because I’d think most people would want Visual Editor. Otherwise why use a CMS at first place :)

4 Aaron Brazell January 23, 2007 at 5:45 pm

Good deal, Jerry. :-)

5 Keanen January 23, 2007 at 5:59 pm

Postie does work after a couple of mods to the code…

http://keanen.com/blog/2007/01/23/get-postie-to-run-on-wordpress-21/

6 HardinComp January 24, 2007 at 2:58 am

I just upgraded to WP 2.1 and I was pleasantly surprised that none of my 2.0.7 plugins broke that I couldn’t find updates to WP 2.1 versions. Even with the little bit that I’ve checked out in 2.1 I’m even happier than New Orleans Saints fans are this week.

Thanks for bringing me into the WP family. I can;t believe it took me so long to use this killer software/

7 me January 25, 2007 at 5:12 pm

the new version still not support. “real” source code editing.
eg. you can not embed a youtube video.

8 Aaron Brazell January 25, 2007 at 5:36 pm

Sure you can. Make sure you’re in standard mode and not using the RTE.

9 Indigo January 28, 2007 at 5:54 am

Thanks for a useful post – I will be upgrading the indigo t-shirt blog this weekend but am still worried about plugins not working.

10 adam s. February 18, 2007 at 1:19 pm

The advanced toolbars and buttons in the TinyMCE editor of Wordpress 2.1 can be changed and customized as you like. See the article at http://timrohrer.com/blog/?p=29 for details.

11 Nishanthe June 28, 2007 at 12:14 pm

Hi,
Nice Top Ten List and frankly this is useful. Thank you for taking time to blog this :)
-Nish

12 Jonathan D. August 19, 2007 at 8:38 pm

Aaron, you could probably do some more updating on this list as more features have been released. Might even start prepping your next article that includes the new Tags feature in Wordpress.

Great write-ups though, looking forward to more of them.

13 Grosshandel September 28, 2007 at 7:20 am

Anyhow, I was using Visual Text Editor before the upgrade.

14 Tarife October 2, 2007 at 4:00 pm

@Grosshandel: Yea I was using Visual Text Editor, too.

15 Tim Shadoz November 15, 2007 at 2:15 pm

And after all this development, there is STILL no Postgres support, denying one of the best pieces of blogging software even more active users who would prefer PostgreSQL instead of MySQL for whatever reasons.

16 Alex Mainz November 21, 2007 at 7:16 pm

Although i’m using wordpress 2.3 now, this is still great information. Its fascinating how fast things like features and / or bugs can change in the short period of time, that a new version is developed. Thanks, Aaron!

17 MikeQue January 24, 2007 at 9:04 am

Thanks! We have been going nuts thinking something was wrong with the PHP or had misinstalled.

This is definitely a usability bug, that this is set to default inWP2.1 and is buried so deep in the UI.

18 Aaron Brazell January 25, 2007 at 5:35 pm

What usability bug are you referring to, MikeQue? Your comment does not make apparent sense because it might be out of context…

Comments on this entry are closed.

Previous post: I Love the Bay Area

Next post: Why Do You Blog?