好吧我有一個問題,在這裏我發現很難解決。雖然我猜測它可能不那麼複雜。在html中獲取the_permanlink(),然後在functions.php中格式化
我使用WordPress的,在我的functions.php我有以下幾點:
<?php
class EXAMPLE {
$this->url=rawurlencode($url);
}
function DO-SOMETHING() {
DO-SOMETHING . $this->url);
}
?>
然後我調用該函數在我的HTML:
<div>
<?php $obj=new EXAMPLE("www.example.com"); echo $obj->DO-SOMETHING();?>
</div>
我需要更換(「WWW .example.com「)與(the_permalink())。 但它不起作用。不知道爲什麼。我已經嘗試了許多使用試驗和錯誤不同的方式,但無法找到一個解決方案
感謝
對於具有相同問題的人,我在這裏找到了答案 [http://stackoverflow.com/questions/18397052/get-permalink-for-json-decode-not-working/18436334#18436334] [1] [1]:http://stackoverflow.com/questions/18397052/get-permalink-for-json-decode-not-working/18436334#18436334 – user2052581