Uses
Uses | Description |
---|---|
wp-includes/ms-site.php: pre_wp_is_site_initialized | Filters the check for whether a site is initialized before the database is accessed. |
wp-includes/load.php: get_current_blog_id() | Retrieve the current site ID. |
wp-includes/plugin.php: remove_action() | Removes a function from a specified action hook. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/plugin.php: add_action() | Hooks a function on to a specific action. |
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(). |
wp-includes/wp-db.php: wpdb::get_results() | Retrieves an entire SQL result set from the database (i.e., many rows). |
wp-includes/wp-db.php: wpdb::suppress_errors() | Enables or disables suppressing of database errors. |