Guest authors, sort of like Wikipedia, but more theme-able

I would check this plugin out. I allows guests to create posts but not sure about editing live posts. > Anonymous Posting It allows anonymous users/readers to write their own posts, writing is protected with reCAPTCHA. Plugin can be used for some kind of message board or public forum, you can configure comments under anonymous … Read more

How to enumerate a list of posts?

I am not sure what your loop looks like from which you are adding the articles to your list. All you need do is to create a variable to hold your counter somewhere before the while statement in your loop. This could be something like <?php $counter = 0; ?> Note I am setting the … Read more

Displaying Subpages while on Parent page?

This is pretty easy, as WordPress sets css classes for the parent pages. Default we hide all sublists (ul) from the menu with .menu ul { display: none; } Then when the parent page is selected we use the css classes that are set by WordPress to show the sublists again. .menu .current_page_ancestor, .menu .current_page_parent … Read more