also,
the same problem is with tags, if I use two word tags, the link contains dash, eg.: “foreign countries” tag would look:
http://www.website.com/tag/foreign-countries
how to make that one to appear automatically with underscore?
http://www.website.com/tag/foreign_countries
Oh I see, it was meant to change the database entries, I guess…
and if I would like to WP modify core files? this must be so simple, I guess only one change somewhere, isn’t it ?
cheers
Edit the database directly then, and modify the postname’s in there.
update wp_posts set post_name = replace(post_name,’_’,’-‘);
Which database should be edited, may I ask for details please?