Forums

Get Post Title but Replace Whitespaces with % (2 posts)

  1. Chris Blackwell
    Member
    Posted 2 years ago #

    How would I go about getting the post title for any post, but having all the whitespaces replaced by the % sign?

    The reason I need to do this is because on my website I have a submit to delicious button, and it allows me to put in the title as a variable, but it does not allow whitespaces in the URL of course.

  2. vtxyzzy
    Member
    Posted 2 years ago #

    This should work:

    $postid = 237;
    $newtitle = preg_replace('/ /','%',get_the_title($postid));

    But, you may need to replace with %20, not just %.

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags