好你所要做的就是在评论发布期间检查哪些挂钩可用。
我认为可能有用的是wp_insert_comment
. 所以你可以这样做:
function my_wp_insert_comment($id, $comment) {
if ( is_admin() && $comment->comment_parent ) {
if ( wp_get_comment_status( $comment->comment_parent ) == \'unapproved\' )
wp_set_comment_status( $comment->comment_parent, \'approve\' );
}
}
add_action(\'wp_insert_comment\', \'my_wp_insert_comment\', 10, 2);
只需将此代码放入
function.php
主题的文件。每次将注释插入数据库时,都会调用此函数。无论如何(从管理区域、前端或通过某些插件等)