У меня есть метод ниже в functions.php. Я пытаюсь найти название поста, на котором оставлен комментарий, а также имя, адрес электронной почты и содержание самого комментария.
add_action('comment_post', 'comment_posted');
function comment_posted($comment_id) {
//what can I do here to get the original title of the post
//what can I do here to get the details of the comment (name, email, content)?
}
Я пробовал варианты the_title () и get_the_title (), но не повезло.