widget yerine single.php (ya da post sayfanız hangisiyse ) dosyasına ekleyin.
edit: pardon url mi dediniz? o zaman
ID ); ?>
kodu doğru. ama widget içinde çalışmaz. php çalıştırmak için functions.php dosyasına küçük bir kod eklemek lazım.
widget içinde php çalıştırmak için:
function php_execute($html){
if(strpos($html,"<"."?php")!==false){ ob_start(); eval("?".">".$html);
$html=ob_get_contents();
ob_end_clean();
}
return $html;
}
add_filter('widget_text','php_execute',100);