Call to undefined function wp_get_current_user() hatası aldım. kodlamam şu şekilde;

borc.php:








Php Bilişim İnternet Hizmetleri









include "config.php";
$user = wp_get_current_user();
$id = $user->ID;
$sorgu = mysql_query("select * from wp_users where id='$id'");
$kayit=mysql_fetch_array($sorgu);
$kullanici=$kayit["user_nicename"];
echo $kullanici

?>





config.php:




$vthost = "localhost";



$vtkullanici = "root";



$vtsifre = "";



$vtadi = "wordpress";





$baglan = @mysql_connect($vthost,$vtkullanici,$vtsifre);



if(!$baglan) die ("Mysql Bağlantısı Sağlanamadı");


mysql_Select_db($vtadi,$baglan) or die ("Veri Tabanı Bağlantısı Sağlanamadı");



?>