在Wordpress中嵌入的php上使用会话变量

时间:2014-10-08 22:03:22

标签: php wordpress

我花了几个小时搜索没有成功,请帮我以下: 我在我的新鲜wordpress安装中安装了wp exec插件。 我可以在wordpress帖子中使用常规的php和mysql查询;现在我需要使用wordpress用户会话变量从wordpress帖子中的php脚本发送mysql查询。 我的意思是像......这样的查询(“select * from table where id_user ='”。$ _ SESSION ['ID']。“'”);

非常感谢

Diego Jimenez

1 个答案:

答案 0 :(得分:1)

使用此标准功能获取用户ID,其余应该有效:

$user_ID = get_current_user_id();

请参阅definition