`str_replace` not working as expected

I do adjustments to a wordpress theme and want to change the title output for a custom post type. To be precise, I want to remove Work Type from it:

echo str_replace('Work Type ', '', wp_title(''));

Current output:

Read More

Work Type Title – What a site

Expected:

Title – What a site

Notes:

  • Simply echoing wp_title('') results in the current output as well
  • If I do wp_title() I get Work Type » Title »

Related posts

Leave a Reply

1 comment