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 | |
add_filter('sanitize_title', 'dnb_transliterate_slug', 5, 3); | |
function dnb_transliterate_slug($title, $raw_title = NULL, $context = 'query') { | |
// Hacky hook due to hacky core, see | |
// http://core.trac.wordpress.org/ticket/16905 | |
if ($raw_title != NULL) { | |
$title = $raw_title; // undo remove_accents | |
} |