WordPress 2.1 needs more developer documentation
I installed WordPress 2.1 today, eager to make use of some of the new plugin features only to find that there isn’t really any documentation on them. I’d like to echo the sentiment mentioned here and say that WordPress really does need stronger developer documentation. I want to be able to look to the documentation not to decrypt the innter workings of some new feature, but to get an idea of what is possible.
Hello,
The problem some folks had about the widget displaying an warning is due to running an old version of WP.
Here’s my fix for the 2.0.1:
Change:
add_action(’widgets_init’, ‘widget_archive_drop_init’);
To:
add_action(’plugins_loaded’, ‘widget_archive_drop_init’);
Them change:
wp_get_archives(”type=monthly&show_post_count=$c&format=option”);
To:
get_archives(”monthly”,””,”option”,$c);
Hope it helps you.
Nice extension but poor support.
Comment by Luciano — March 4, 2007 @ 8:45 pm
Sorry, that was ment for your Dropdown Archives post..
Comment by Luciano — March 4, 2007 @ 8:46 pm