<?php
/* translators: Hidden accessibility text. */
_e( 'Disallowed Comment Keys'
);
?>
</span></legend>
<p><label for="disallowed_keys"><?php
_e( 'When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be put in the Trash. One word or IP address per line. It will match inside words, so “press” will match “WordPress”.'
); ?></label></p>
<p>
<textarea name="disallowed_keys" rows="10" cols="50" id="disallowed_keys" class="large-text code"><?php
echo esc_textarea( get_option( 'disallowed_keys'
) ); ?></textarea>
</p>
</fieldset></td>
</tr>
<?php
do_settings_fields( 'discussion', 'default'
); ?>
</table>
<h2 class="title"><?php
_e( 'Avatars'
); ?></h2>
<p><?php
_e( 'An avatar is an image that can be associated with a user across multiple websites. In this area, you can choose to display avatars of users who interact with the site.'
); ?></p>
<?php
// The above would be a good place to link to the documentation on the Gravatar functions, for putting it in themes. Anything like that?
$show_avatars =
get_option( 'show_avatars'
);
$show_avatars_class = '';