YuqseLX adlı üyeden alıntı: mesajı görüntüle
Şöyle bir şey buldum sanırım o fonksiyon yerine şöyle kullanmanız gerekiyormuş;
0 down vote $is_admin = current_user_can('manage_options'); // all user they have mange option will get if ($is_admin) { echo "admin" } else { echo "not admin" }
is_admin veya türevi fonksiyonlar panelde çalışıyormuş sanırım bunu bir deneyin derim..
bu şekilde kullandım yine beyaz sayfa hocam.
<?php 
include 'wp-load.php';

$is_admin = current_user_can('manage_options'); 
// all user they have mange option will get
if ($is_admin) { echo "admin"; } else { echo "not admin"; }
echo "111111111";
?>