09-04-2010, 03:15 PM
|
#2 (permalink)
|
|
The Addict
Join Date: Aug 2008
Posts: 336
Thanks: 8
|
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 ()); ?>
|
|
|
|