Uses
Uses | Description |
---|---|
wp-includes/class-wp-theme.php: site_allowed_themes | Filters the array of themes allowed on the site. |
wp-includes/theme.php: wp_get_themes() | Returns an array of WP_Theme objects based on the arguments. |
wp-includes/load.php: is_multisite() | If Multisite is enabled. |
wp-includes/load.php: get_current_blog_id() | Retrieve the current site ID. |
wp-includes/load.php: is_admin() | Determines whether the current request is for an administrative interface page. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/option.php: update_option() | Updates the value of an option that was already added. |
wp-includes/option.php: delete_option() | Removes option by name. Prevents removal of protected WordPress options. |
wp-includes/option.php: get_option() | Retrieves an option value based on an option name. |
wp-includes/ms-blogs.php: switch_to_blog() | Switch the current blog. |
wp-includes/ms-blogs.php: restore_current_blog() | Restore the current blog, after calling switch_to_blog(). |