Wordpress on iPhone Released

Yes, the wait is finally over. Wordpress is finally on iPhone with following features in major:

  • Support for WP.com blogs and self-installed blogs version 2.5.1 and higher
  • Embedded Safari for true previews of posts
  • Full tag and category support
  • Photo support for both camera pictures as well as library photos
  • Support for multiple blogs
  • Ability to password protect a post, save as a draft, or mark the post for later review
  • Auto-recovery. This will recover posts which have been interrupted by phone calls

Check that this app require iPhone 2.0 Software update.

Download the app from here. (Link will require you to have iTunes Installed)

Wordpress Theme Directory Launched

Oops…late to report but its true. Those who were tired of sick and not working Wordpress Themes Viewer which had no new theme for past 1 year or so, can now be relieved because Wordpress has a new Official Themes Directory - at Wordpress Extend. Just like Plugins directory, Themes directory works almost the same. Just login into Wordpress Support and access the Themes directory here.

Wordpress Designers, you can upload your theme via here.

Join the forum discussion on this post - (1) Posts

Wordpress 2.6 is out

Wordpress 2.6 has been released today. Check it out.

Here is a video from Automattic on Wordpress 2.6:

Installed it without hitch here. All plugins seem to work on Wordpress 2.6. Should be a painless upgrade. No Template edits required for this release atleast. Check previous Wordpress 2.6 post for new features which come with it.

NSpeaks Forum for Bloggers Launched

I have opened NSpeaks Forum for bloggers! Yes, finally a forum here at nspeaks. It is a forum for all fellow bloggers to come ahead, discuss, share and learn a lot which I may not be able to express via my blog.

Why a forum?

Good question if I can answer it perfectly too! :D I cannot cover every aspect of blogging. Blogging aspect is so vast that it would take lot of posts and time to cover most aspects. And it is not good to keep the knowledge all to myself. I want newbie bloggers to come forward and ask questions at the forum. I will try my best to answer them and in process may learn a thing or too!

Post your suggestions here or at the forum. Hope you like the forum and my effort in educating people about blogging.

Fix no bullets on k2 1.0 RC6

k2 theme’s latest version has a big bug in the form of no bullet style for unordered lists(ul tag). Actually this was a mistake that crept when Eric Meyer’s reset css was applied to the core css of k2 theme. To fix this bug, open core.css.php (../k2/css/core.css.php) and search & replace from line 29 to the 31:

ol, ul {
list-style: none;
}

to

ol, ul {
/* list-style: none; */
}

This should fix this simple bug.