To just display the immediate children of the current page, I took out the if, and just use:
$children = wp_list_pages(“title_li=&child_of=”.$post->ID.”&echo=0&depth=1″);
Try adding the parameter &depth=1 like this:
if($post->post_parent)
$children = wp_list_pages(“title_li=&child_of=”.$post>post_parent.”&echo=0&depth=1″);
else
$children = wp_list_pages(“title_li=&child_of=”.$post->ID.”&echo=0&depth=1″);
If you need any help, you know where to call 😉
Adding reCaptcha support would be very nice, as we use it throughout our site for comment protection.
reCaptcha also allows access for blind people (through a sound CAPTCHA), which is very important.