钩子文档

show_network_site_users_add_new_form

💡 云策文档标注

概述

show_network_site_users_add_new_form 是一个 WordPress 过滤器,用于控制是否在多站点用户屏幕上显示“添加新用户”表单。此过滤器允许开发者根据条件动态调整表单的可见性。

关键要点

  • 过滤器名称:show_network_site_users_add_new_form
  • 用途:过滤是否在多站点用户屏幕上显示“添加新用户”表单
  • 参数:$bool(布尔值),默认为 true,表示显示表单
  • 注意事项:WordPress 正在简化标签,但此处保留“添加新用户”以区别于“添加现有用户”部分
  • 引入版本:3.1.0

代码示例

if ( current_user_can( 'create_users' ) && apply_filters( 'show_network_site_users_add_new_form', true ) ) :

📄 原文内容

Filters whether to show the Add New User form on the Multisite Users screen.

Description

Note: While WordPress is moving towards simplifying labels by removing “New” from “Add New X” labels, we keep “Add New User” here to maintain a clear distinction from the “Add Existing User” section above.

Parameters

$boolbool
Whether to show the Add New User form. Default true.

Source

if ( current_user_can( 'create_users' ) && apply_filters( 'show_network_site_users_add_new_form', true ) ) :

Changelog

Version Description
3.1.0 Introduced.