Title: Cron fix
Last modified: June 9, 2026

---

# Cron fix

 *  [keysuck](https://wordpress.org/support/users/keysuck/)
 * (@keysuck)
 * [2 days, 15 hours ago](https://wordpress.org/support/topic/cron-fix-2/)
 * I had to add the following to functions.php in order to process permalinks in
   Korean language:
 *     ```wp-block-code
       add_filter( 'c3_invalidation_items', function( $items ) {    return array_map( function( $path ) {        $wildcard = '';        if ( str_ends_with( $path, '*' ) ) {            $wildcard = '*';            $path     = rtrim( $path, '*' );        }        $segments = explode( '/', $path );        $segments = array_map( function( $seg ) {            return rawurlencode( rawurldecode( $seg ) );        }, $segments );        return implode( '/', $segments ) . $wildcard;    }, $items );} );
       ```
   

You must be [logged in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fcron-fix-2%2F%3Foutput_format%3Dmd&locale=en_US)
to reply to this topic.

 * ![](https://ps.w.org/c3-cloudfront-clear-cache/assets/icon-256x256.jpg?rev=3337009)
 * [C3 Cloudfront Cache Controller](https://wordpress.org/plugins/c3-cloudfront-clear-cache/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/c3-cloudfront-clear-cache/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/c3-cloudfront-clear-cache/)
 * [Active Topics](https://wordpress.org/support/plugin/c3-cloudfront-clear-cache/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/c3-cloudfront-clear-cache/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/c3-cloudfront-clear-cache/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [keysuck](https://wordpress.org/support/users/keysuck/)
 * Last activity: [2 days, 15 hours ago](https://wordpress.org/support/topic/cron-fix-2/)
 * Status: not resolved