wp_is_large_user_count

過濾鉤子
apply_filters( 'wp_is_large_user_count', $count > 10000, $count, $network_id )
引數
  • (bool) $is_large_user_count Whether the site has a large number of users.
    Required:
  • (int) $count The total number of users.
    Required:
  • (int|null) $network_id ID of the network. `null` represents the current network.
    Required:
定義位置
相關勾子
wp_is_large_networkwp_insert_commentpre_user_loginwpmu_users_columnspre_user_url
相關方法
wp_is_large_user_countwp_update_user_countsget_user_countwp_schedule_update_user_countswp_is_large_networkwp_update_term_count
引入
6.0.0
棄用
-

wp_is_large_user_count:此功能檢查站點是否有大量使用者。如果一個站點擁有超過 10,000 個使用者,則該站點被認為擁有大量使用者。

根據網站的使用者數量,過濾網站是否被認為是大型網站。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
return apply_filters( 'wp_is_large_user_count', $count > 10000, $count, $network_id );
return apply_filters( 'wp_is_large_user_count', $count > 10000, $count, $network_id );
return apply_filters( 'wp_is_large_user_count', $count > 10000, $count, $network_id );

常見問題

FAQs
檢視更多 >