How can I automatically delete comments that contain chinese / russian signs?
Those characters you quoted here are Han (used by Chinese language), as they matched by the unicode character property \p{Han}. You can perform a regular expression search in a plugin like so: <?php /** * Plugin Name: Drop comments by chars * Description: Delete comments which includes unicode characters of Han, Hangul and Cyrillic. * … Read more