Jump to content

Need help with STR REPLACE function...easy one


becoolufull

Recommended Posts

I am having a wordpress blog....What I want is need to remove :(colon) from a link

 

 

Now when the my post page executes the <?php wp_title('', true, 'right'); ?> will fetch the title of the page.

 

This also fetches :(colon) in the title which I need to remove in this link

 

www.mysite.com/<?php wp_title('', true, 'right'); ?>

 

How can I do this?

Link to comment
Share on other sites

www.mysite.com/<?php str_replace(":", "", wp_title('', true, 'right')); ?>

 

Given that it returns the title and not echos the title. If it echos it, either find a function that returns it, or use output buffering ob_start to grab it by creating your own function for it. Not being a WP Guru, yea.

Link to comment
Share on other sites

  • 2 weeks later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.