Wordpress bunu tahmin döndürür "the_permalink ()" adlı bir fonksiyon sağlar!, Belirli bir mesaja kalıcı mesajların bir döngü içinde süre.
Ben bu kodu çalıştırdığınızda permalink ve URL kodlama çalışıyorum:
<?php
print(the_permalink());
$permalink = the_permalink();
print($permalink);
print(urlencode(the_permalink()));
print(urlencode($permalink));
$url = 'http://wpmu.local/graphjam/2008/11/06/test4/';
print($url);
print(urlencode($url));
?>
Bu HTML bu sonuçlar üretir:
http://wpmu.local/graphjam/2008/11/06/test4/
http://wpmu.local/graphjam/2008/11/06/test4/
http://wpmu.local/graphjam/2008/11/06/test4/
http://wpmu.local/graphjam/2008/11/06/test4/
http%3A%2F%2Fwpmu.local%2Fgraphjam%2F2008%2F11%2F06%2Ftest4%2F
Ben çıktı satır 2, 3 ve 5 kodlanmış URL olması beklenir, ancak satır 5 böyledir. Düşünceler?