Threaded Comments Depth Control
This snippet allows you to control the maximum depth of threaded comments, preventing deeply nested comment threads.
PHP
function custom_thread_comments_depth($args) {
$args['max_depth'] = 3; // Set the maximum depth of nested comments
return $args;
}
add_filter('wp_list_comments_args', 'custom_thread_comments_depth');
Snippet Feedback
Did this snippet work for you? Do you have any questions about this snippet? Leave some feedback below.
SHARED BY