wp_widgets_access_body_class() WordPress Function
The wp_widgets_access_body_class() function allows you to add a class to the body element when the user has access to the WordPress admin dashboard. This can be useful for customizing the dashboard interface for your specific needs.
wp_widgets_access_body_class( string $classes ) #
Contents
Parameters
- $classes
(string)(Required)
Return
(string)
Source
File: wp-admin/includes/widgets.php
325 326 327 | function wp_widgets_access_body_class( $classes ) { return "$classes widgets_access " ; } |
Expand full source codeCollapse full source codeView on TracView on GitHub