Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 .php 文件中,我使用以下内容返回我的帖子所在的类别:
<?php echo single_cat_title(); ?>
然后在我的 URL 中返回类别标题。但是,由于我的类别是两个词(“南非”),因此 URL 显示为:“south%20africa”而不是“southafrica”。
我知道正在插入“%20”,因为 url 不能有中断。有没有办法编辑上述内容<?php echo single_cat_title(); ?>以返回类别标题但消除任何中断?
echo urldecode("south%20africa");
或者
echo str_replace('%20', '', "south%20africa");