Description
Within form#commentform, just after p.comment_box (which contains the comment box textarea).
Source Position
<p class="comment_box"> <textarea name="comment" id="comment" tabindex="4" cols="40" rows="8"></textarea> </p> thesis_hook_after_comment_box
Default Functions
The following functions are added to this hook by default:
show_subscription_checkbox(if Subscribe to Comments Plugin is enabled)
Example
function my_allowed_tags() {
$allowed_tags = '<span class="allowed"><span>' . "\n";
$allowed_tags .= '<em>You can use these <acronym title="HyperText Markup Language">HTML</acronym> tags and attributes:</em> ';
$allowed_tags .= allowed_tags() . "\n";
$allowed_tags .= '</span></span>' . "\n";
echo $allowed_tags;
}
add_action('thesis_hook_after_comment_box','my_allowed_tags');