To add custom content to the "Write" admin pages (where you write posts, pages or links), WordPress 2.5 introduces a new function set: add_meta_box() Simple plugin example : < View plain text > php <?php /* Plugin Name: Example: Add Meta Box Plugin URI: # Description: Simple example showing how to add a "meta box" […][...] → Read more
Archive for the "WordPress" Tag
Migrating Plugins from 2.3 to 2.5. WordPress coders, get prepared for the upcoming 2.5 (to be released on March 10th). Themes shouldn't be affected by the new features and code, but plugins messing with the admin area will probably need a rework.[...] → Read more
If you don't have an SVN install to play with next WordPress version (the upcoming 2.5 milestone), someone is here to help. Chris Johnston has set up a WP 2.5 demo site so you can log in the admin area and see what's changing in there. New colors, new look, new menus, new interface: this […][...] → Read more
< View plain text > php query_posts($query_string.'posts_per_page=-1'); while(have_posts()) { the_post(); the_time(); the_title(); } This will display the time and title for all your posts. This could result in a very long page, and a more usable way of doing it would be to […][...] → Read more
I'm a reader of the wp-hackers mailing list. Besides some fairly useless and unproductive advocacy or opinion threads happening on an annoyingly regular basis, the list is also a very great place to share code tips and snippets. Someone asks a "how do I do this" question, and someone else (sometimes) comes up with a […][...] → Read more
The increasingly popular Prologue theme now has a dedicated website: Prologue Theme, with a convenient download link pointing to a .zip archive instead of an SVN repository. What I like about this theme is the idea they had to include a trimmed down version of the post interface right into the home page. I see […][...] → Read more
Some dude is going to deactivate his spam protection (Akismet) for one day, on December 15th, and the idea is actually starting to spread. What a pointless idea… I mean, everyone knows how many spam they're getting each day: Akismet as a WordPress plugin comes with a spam counter. I know I get between 100 […][...] → Read more
I'm extremely pleased and excited to (finally!) release my latest plugin, Absolute Comments, which is probably the most useful plugin I've written to date. I love it. Absolute Comments adds something that everybody misses: the ability to reply to comments from within your regular "Manage Comments" page, without having to load the post page first. […][...] → Read more
Design Vitality is running a WordPress Theme Competition. Deadline: November 30th. Prizes: $1000, Wii, iPhone. Rules and details: here. (via)[...] → Read more
Showing a WordPress post's "last modified" date: nothing rocket science, just something that's a nice idea to implement in your theme. Hey, I just did ;)[...] → Read more

