bbPressのトピックの返信数に一定の数がコメントされたら自動でクローズ。
functions.php
add_action( 'bbp_new_reply_post_extras', 'rew_close_topic' );
function rew_close_topic ($reply_id) {
$topic_id = bbp_get_reply_topic_id ($reply_id) ;
$count = bbp_get_topic_reply_count ($topic_id) ;
if ($count >100) bbp_close_topic( $topic_id );
}
例では100件を超えたら返信フォームが自動でクローズされます。
