View Single Post
Old 09-04-2010, 03:15 PM   #2 (permalink)
tony
The Addict
 
tony's Avatar
 
Join Date: Aug 2008
Posts: 336
Thanks: 8
tony is on a distinguished road
Default

So, if I understand it right, you want to convert a link like this http://website.com/post/123 to something like this http://website.com/?post=123?

In hard-coded simple terms it could be done with a replace of strings
php Code:
<?php str_replace('/post/', '/?post=', the_permalink()); ?>
tony is offline  
Reply With Quote
The Following User Says Thank You to tony For This Useful Post:
kicole (09-04-2010)