OK – all this has already sort of been touched on…
I have in beta an ability to add pictures… albeit a little hacky… and doesn’t work in all browsers for some DIV reasons!
the categories should not be hard to add. it’s buried in functions.php and post-form.php
DELETE button would be nice. All you can to is edit an entry and then remove the contents.
We’re working on lots of nice enhancements to P2 and will unveil them with the next release – or if you like, check out the svn repository: http://svn.automattic.com/wpcom-themes/p2/
any updates on the next release for P2? The attachment feature is greatly missing by so many.
Delete button accomplished:
Add this into your entry.php file:
<?php if (current_user_can('edit_post', $post->ID)) echo "| <a href='" . wp_nonce_url("/wp-admin/post.php?action=delete&post=$id", 'delete-post_' . $post->ID) . "'>Delete post</a>" ?>
OR FOR JUST ADMIN delete-ability:
<?php if (current_user_can('level_10')) echo "| <a href='" . wp_nonce_url("/wp-admin/post.php?action=delete&post=$id", 'delete-post_' . $post->ID) . "'>Delete post</a>" ?>
(keep in mind that upgrading P2 will wipe out your changes!)
@dlopeman: That code doesn’t work. I got excited for a moment about it but clicking on ‘Delete post’ directs the user to a screen that says ‘Are you sure you want to do this?’ with a link below saying ‘Try again’. The only thing the user can do is click ‘Try again’ which takes you back to the site homepage.