But if you still looking for a solution here is the answer.
Hunt down the following file: wp-includes/formatting.php
Jump down to the sanitize_title_with_dashes
function. You'll find
this section of code inside:
$title = strtolower($title);
$title = preg_replace('/&.+?;/', '', $title); // kill entities
$title = str_replace('.', '-', $title);
$title = preg_replace('/[^%a-z0-9 _-]/', '', $title);
$title = preg_replace('/\s+/', '-', $title);
$title = preg_replace('|-+|', '-', $title);
$title = trim($title, '-');
Swap out all of the dashes/hyphens (-
) for underscores (_
) like
so:
$title = strtolower($title);
$title = preg_replace('/&.+?;/', '', $title); // kill entities
$title = str_replace('.', '_', $title);
$title = preg_replace('/[^%a-z0-9 _-]/', '', $title);
$title = preg_replace('/\s+/', '_', $title);
$title = preg_replace('|-+|', '_', $title);
$title = trim($title, '_');
Note that any posts you've created before this change, and rely on the
%postname%
permalink structure tag, will be broken.
In that case you'll need to go back and republish those post so the
dashes are swapped out for the underscores. Or just write yourself a
little SQL to replace them.