当前位置:首页 > 网络科技 > WordPress 获取当前登录用户 ID 教程

WordPress 获取当前登录用户 ID 教程

10个月前 (09-16)admin网络科技63

其实在开发中,对于用户 ID 的使用其实还蛮多的,而对于用户来说 ID 却并不是那么重要,判断一个唯一的用户使用 ID 无疑是最为便捷的,刚刚在测试准备开发泪雪网的收藏功能,所以需要以用户 ID 来记录收藏数据,而对于 WordPress 开发来说要想获取任何数据都是非常简单的,甚至有多种方法。

获取 WordPress 当前登录用户的 ID 方法有很多,可以通过 get_currentuserinfo 函数来获取,也可以通过 wp_get_current_user 函数检索当前登录用户信息,作为分享子凡也还是举个例子:

1
2
3
4
5
6
7
8
9
10
11
// get_currentuserinfo 函数获取用户 ID
global $current_user;
get_currentuserinfo();
echo $current_user->ID;
 
// wp_get_current_user 函数获取用户 ID
$current_user = wp_get_current_user();  
echo $current_user->ID ;
 
// get_current_user_id() 子凡认为最极致的做法
echo get_current_user_id();

其实在最初的一些开发中子凡也是使用以上的这两种方法,然而后来无意间发现了 get_current_user_id() 这个函数,这是 WordPress 本身已经通过封装好的函数,也是通过 wp_get_current_user 函数来查询的。

虽说子凡也并非特别高级的程序员,但是本着对代码极致的追求,代码冗余是让我接受不了的,所以对于在 WordPress 开发中,如果只是想要获取当前登录用户的 ID,直接使用 get_current_user_id() 函数获取即可。

更多关于WordPress优化及疑问可以添加留言

w.haolusi.com

本文链接:http://w.haolusi.com/get_current_user_id.html

扫描二维码推送至手机访问。

版权声明:本文由豪鲁斯兴趣网发布,如需转载请注明出处。

本文链接:https://w.haolusi.com/?id=2787

标签: WordPress优化
分享给朋友:

“WordPress 获取当前登录用户 ID 教程” 的相关文章

What are the main driving forces for the future development of green energy?

What are the main driving forces for the future development of green energy?

The main driving forces for the future development of Green Energy can be attributed to the following aspects:1. Technological innovationTec...

Influencer Marketing: Transforming Modern Advertising

Influencer Marketing: Transforming Modern Advertising

Influencer Marketing has emerged as a pivotal strategy in modern advertising, leveraging the reach and credibility of social media personalities...

Machine Learning: Transforming Data into Intelligence

Machine Learning: Transforming Data into Intelligence

Machine Learning (ML) is a transformative technology that leverages algorithms and statistical models to enable computers to learn from and make...

百度正式下线“快速收录”功能,VIP可以申请“快速抓取”权限

百度正式下线“快速收录”功能,VIP可以申请“快速抓取”权限

最近可以说是站长们一片哀嚎,清明节前刚经历一次大的波动恢复没两天,让后百度又一次性的在清明节再次送走了,目前又开始缓慢的在恢复,但是似乎情况也并不是很妙。就在这时,百度搜索资源平台发布了一则“关于升级平台「快速收录」工具的通知”的公告,意思就是正式下线快速收录功能,换新上线一个叫做“快速抓取”的工具...

MYSQL字符集有哪些

MYSQL字符集有哪些

MySQL 中的字符集是用来确定数据库中字符数据的编码方式,它决定了如何存储和检索数据。MySQL 中常用的字符集:UTF8:UTF-8 是一种 Unicode 字符编码方式,它可以表示世界上大部分的文字字符。MySQL 中的 UTF8 字符集最多只能存储 3 字节的 UTF-8 编码字符,...

最新可用!2024年Google谷歌镜像,Google学术镜像站(8月更新)

最新可用!2024年Google谷歌镜像,Google学术镜像站(8月更新)

本篇文章目录|Table of Contents Hide Google谷歌镜像-直接访问谷歌搜索01.Google谷歌搜索最新镜像入口02.Go...

发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。