Mika MAtikainen
Apr 15, 2020 · 4 min read
Simple Ajax Chat: Auto-Clear Chats
To automatically clear/truncate chats every thirty minutes, add the following to your theme’s functions.php file:
[code lang=”php”]
// define SAC auto-clear interval
function sac_truncate_chats_interval($interval) {
return ‘thirty_minutes’;
}
add_filter(‘sac_truncate_chats_interval_filter’, ‘sac_truncate_chats_interval’);
[/code]