comment_edit_pre

過濾鉤子
apply_filters( 'comment_edit_pre', $comment->comment_content )

comment_edit_pre: 這是一個過濾鉤子,在資料庫中的評論被更新之前執行。這個鉤子被傳遞給評論資料陣列作為它的唯一引數,並且它被期望返回評論資料。這個鉤子的目的是允許外掛或主題在評論被儲存到資料庫之前修改評論資料。

該過濾器在wp-admin/includes/comment.php中有記載。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$comment_content = apply_filters( 'comment_edit_pre', $comment->comment_content );
$comment_content = apply_filters( 'comment_edit_pre', $comment->comment_content );
$comment_content = apply_filters( 'comment_edit_pre', $comment->comment_content );

常見問題

FAQs
檢視更多 >