This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** Suppress certain patterns from WP debug log lines | |
* | |
* Here, $suppress_patterns is an array of arrays. Each inner array contains first the error | |
* level to match and then string parts that should be found (in order) from the log line. | |
* | |
* You can place this in wp-config.php after `define('WP_DEBUG_LOG', true );` | |
*/ | |
// Utility function to check if all parts appear in order and non-overlapping in a message |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$municipalities_by_region = array( | |
'Ahvenanmaa' => array( | |
35 => 'Brändö', | |
43 => 'Eckerö', | |
60 => 'Finström', | |
62 => 'Föglö', | |
65 => 'Geta', |