pre_comment_on_post
Fires before a comment is posted.
Использование
add_action( 'pre_comment_on_post', 'wp_kama_pre_comment_on_post_action' ); /** * Function for `pre_comment_on_post` action-hook. * * @param int $comment_post_id Post ID. * * @return void */ function wp_kama_pre_comment_on_post_action( $comment_post_id ){ // action... }
- $comment_post_id(int)
- Post ID.
Список изменений
С версии 2.8.0 | Введена. |
Где вызывается хук
pre_comment_on_post
wp-includes/comment.php 3627
do_action( 'pre_comment_on_post', $comment_post_id );