1
我在function.php下面的方法。我正在嘗試查看評論留下的帖子的標題,以及評論本身的名稱,電子郵件和內容。wordpress - 檢索文章內容和評論在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(),但沒有運氣。
這太棒了!正是我在找什麼。謝謝。 – sol 2011-04-25 17:14:20