wordpress Geçerli kullanıcıyı olsun

0 Cevap php

Ben bazı şablon uygulama için benim wordpress dizini içinde bir dizin var

apacheWWW/wordpress/jtpc 

Benim uygulamada i wordpress geçerli kullanıcı kimliği istiyorum

Ben tek bir sayfada bunu yapmak mümkün ama diğer ben bir hata alıyorum

Bu benim kullanıcı kimliği almak için yapıyorum budur:

require_once( '/../../wp-load.php' );
global $current_user;
get_currentuserinfo();
$user_id = $current_user->ID;

ama ben bu hat üzerinde bir hata alıyorum

 require_once( '/../../wp-load.php' );

Hata diyor

 File does not exist: D:/programming/apacheWWW/wordpress/jtpc/ajaxHandlers/wp-admin, referrer: http://localhost/wordpress/?page_id=23

what dose he wants with the wp-admin , and why he is looking for it in the wrong directory , It's suppose to be under

   D:/programming/apacheWWW/wordpress/

(Ben dosya yükleyerek ve bu kullanıcı kimliği için bir dizin oluşturma), bir sayfa için çalışıyor

but for the other page I send an ajax request to delete files by user request so I need to id again, but there he throws the error

0 Cevap