comment_form_after
Action HookDescription
Fires after the comment form.Hook Information
File Location |
wp-includes/comment-template.php
View on GitHub
|
Hook Type | Action |
Line Number | 2913 |
Hook Parameters
This hook doesn't accept any parameters.
Usage Examples
Basic Usage
<?php
// Hook into comment_form_after
add_action('comment_form_after', 'my_custom_function');
function my_custom_function() {
// Your custom code here
}
Source Code Context
wp-includes/comment-template.php:2913
- How this hook is used in WordPress core
<?php
2908 /**
2909 * Fires after the comment form.
2910 *
2911 * @since 3.0.0
2912 */
2913 do_action( 'comment_form_after' );
2914 }
PHP Documentation
<?php
/**
* Fires after the comment form.
*
* @since 3.0.0
*/
Quick Info
- Hook Type: Action
- Parameters: 0
- File: wp-includes/comment-template.php
Related Hooks
Related hooks will be displayed here in future updates.