I’ve added in a filter that you can use to conditionally skip threads.
You should be able to use it to skip threads that don’t have the URL base for each of your sites.
You’ll need to add and configure the filter for each of your sites.
If you don’t already, I recommend you do this in a custom plugin, e.g.
Here’s an example that would only show sitename.com/fr/ threads (note- you need to use the full URL, ie https … www … if used )
function my_itsg_dlc_skip_thread( $skip_thread, $thread_info, $comment ) {
$thread_link = $thread_info[‘link’];
$query = ‘https://www.sitename.com/fr/’;
// skip threads that do not start with $query
// logic : if $thread_link does not start with $query
if ( substr( $thread_link, 0, strlen( $query ) ) !== $query ) {
return true;
}
return $skip_thread;
}
add_filter( ‘itsg_dlc_skip_thread’, ‘my_itsg_dlc_skip_thread’, 10, 3 );