This hooks allows to manipulate by the current language.
Example:
1 2 3 4 5 6 7 8 | add_filter('tableon_current_lang', function($lang) { if (class_exists('SitePress')) { global $sitepress; $sitepress->switch_lang(substr($lang, 0, 2), true); } return $lang; }); |