我的網址爲WordPress的帖子是這樣的: http://localhost:8888/blabla/book/yes-vi-testar在WordPress的使用上the_permalink的PHP SUBSTR()
使用the_permalink()
會產生「http://localhost:8888/blabla/book/yes-vi-testar」但我想剪頭34個字符來得到這樣一個字符串「是-VI-testar」。如何在這種情況下使用php substr?我很困惑...我試過
<?php
$friendlypermalink = substr(the_permalink(), 34);
?>
但這並不能解決問題。
這樣不是回報「是-VI-testar」不知道? – bisko
@bisko:是的,是不是問題是如何得到的? –
$ url = get_permalink();訣竅 –