These FAQs have been deprecated. You will find the new updated Frequently Asked Questions on the new pages for the FAQ.
To create password protected text, see Line 19 of wp-includes/template-functions-post.php for that information.
To turn your comments feature off:
This will stop WordPress from sending you a mail if the email address you used when you posted the comment was the same as the email address for the author of the post (which is the address the notification email gets sent to). This applies to v1.2 / 1.2.1 code ONLY.
In functions.php change the following line:
if ('' == $user->user_email) return false; // If there's no email to send the comment to
to
if ('' == $user->user_email || $comment->comment_author_email == $user->user_email) return false; // If there's no email to send the comment to
Information on how to add an image to your RSS feed for WordPress 1.5:
Information on how to add an image to your RSS feed for WordPress 2.0+: