考え方
https://teratail.com/questions/113288
やった事①
functions.phpの下部に下記を追記
/*-------------------------------------------*/
/* comment redirect
/*-------------------------------------------*/
add_action('comment_post', function($comment_ID, $comment_approved, $commentdata) {
// ページIDを取得
$comment = get_comment($comment_ID);
$post_id = $comment->comment_post_ID;
// カスタムフィールドに登録されたリダイレクト先URLを取得
//(フィールド名がcomment_redirectの場合)
$redirect_to = get_post_meta($post_id, 'comment_redirect', true);
// リダイレクト先URLが登録されていれば遷移させる
if ($redirect_to) {
wp_safe_redirect($redirect_to);
exit;
}
}, 10, 3);
やった事②
カスタムフィールド化で反応する仕掛け。
固定ページに任意のURLを入れる