Hi, im using WP 1.5.1.3 and i want to show only the permalink title of the post like this:
/the-title-of-my-post/
instead of:
http://mysite.tld/the-title-of-my-post/
How can i do this?
Thanks.
Hi, im using WP 1.5.1.3 and i want to show only the permalink title of the post like this:
/the-title-of-my-post/
instead of:
http://mysite.tld/the-title-of-my-post/
How can i do this?
Thanks.
You could get it this way.
<?php echo '/' . $post->post_name . '/'; ?>
Great, thanks!!!
This topic has been closed to new replies.