描述
垃圾邮件是一回事,但巨魔和袜子木偶是另一回事。 有时人们只是决定他们会成为混蛋并创建多个帐户来骚扰诚实的用户。 此插件通过记录创建时使用的IP地址来帮助您进行反击。
Log into your WP install as an Admin and you can look at their profile or the users table to see what it is. For security purposes a user’s own IP is not displayed to them when they look at their own profile.
隐私说明
This plugin adds additional data to a new user’s wp_usermeta
data under the signup_ip
key. This data is directly tied to the user account, and is only editable via the database. Should a user account be deleted from the site, the data will be automatically deleted.
No external data is transmitted, it all stays on your install.
安装
无需特殊激活。
常见问题
-
为什么有些用户会说“无记录”?
-
This is because the user was registered before the plugin was installed and/or activated.
-
谁能看到IP?
-
管理员和网络管理员。
-
这适用于多站点吗?
-
是的!
-
如果这适用于SingleSite(单站点)为什么起这个名字?
-
There’s already a plugin called “Register IP”, but it didn’t work on MultiSite. I was originally just going to make this a MultiSite-only install, but then I thought ‘Why not just go full bore!’ Of course, I decided that AFTER I requested the name and you can’t change names. So you can laugh.
-
这适用于BuddyPress吗?
-
It works with BuddyPress on Multisite, so I presume single-site as well. If not, let me know!
-
这让我的屏幕太宽了!
-
很抱歉,但是当您添加更多列时会发生这种情况。
-
多站点和单站点安装之间有什么区别?
-
On multisite only the Network admins who have access to Network Admin -> Users can see the IPs on the user list.
-
如何过滤IP,比如链接到IP检查器?
-
There’s a filter! Toss this in an MU plugin:
function filter_ripm_show_ip($theip) { $theip = '<a href="https://duckduckgo.com/?q='.$theip.'">'.$theip.'</a>'; return $theip; } add_filter('ripm_show_ip', 'filter_ripm_show_ip');
评价
贡献者及开发者
更新日志
1.8.2
- 02 August 2020 by Ipstenu
- Fix to show IP on your own page (if you’re an admin). This was always there, but only on other people’s pages, so you may not have noticed.
- Tested 5.5 compat
- PHPCS cleanup.
1.8.1
- 2018年3月7日由ipstenu
- 清理并转义IP地址(道具@juliobox)
1.8.0
- 2018年1月4日由Ipstenu
- 列可分类性(什十十十十十么!?)
- Support for proxies props @mattpramschufer