Can't remove special characters with str_replace

后端 未结 8 665
北荒
北荒 2020-12-07 04:00

I have a very trivial problem with str_replace.

I have a string with the En Dash character ( - ) like this:

I want to remove - the dash
8条回答
  •  -上瘾入骨i
    2020-12-07 04:48

    i've managed to do this by calling remove_filter( 'the_title', 'wptexturize' ); in functions.php an then you perform a str_replace or whatever by "-" sign;

提交回复
热议问题