我有以下无法修改的代码。
if ( empty($post->comment_status) ) {
do_action('comment_id_not_found', $comment_post_ID);
exit;
}
我可以创建在do_action
处理过程中调用的函数(wordpress 中的钩子)。
function my_function () {
//do something
}
add_action('comment_id_not_found', 'my_function');
是否可以跳过exit;
条件中的命令?
谢谢