您如何从 WordPress 用户计数中减去 1,以便不计算隐藏的管理员用户?我可以一起隐藏计数,但我宁愿从计数中减去 1。https://snipboard.io/CfAIcG.jpg将代码插入 Functions.php
1 回答
偶然的你
TA贡献1841条经验 获得超3个赞
不确定为什么要隐藏计数,但不确定用户页面上实际隐藏的管理员配置文件。
我已经按照你的意愿做了减法计数。将此代码放入 functions.php 并访问用户页面。
add_filter("views_users", 'editCounts', 10, 1);
function editCounts($views) {
if ( current_user_can( 'administrator' ) ) {
$total = count_users();
$newTotal = $total['total_users']-1;
$views = array('all' => '<a href="users.php" class="current" aria-current="page">All <span class="count">('.$newTotal.')</span></a>', 'administrator' => '<a href="users.php?role=administrator">Administrator <span class="count">('.$newTotal.')</span></a>');
return $views;
}else{
return $views;
}
}
希望能帮助到你
- 1 回答
- 0 关注
- 123 浏览
添加回答
举报
0/150
提交
取消