Uses
Uses | Description |
---|---|
wp-includes/load.php: wp_installing() | Check or set whether WordPress is in “installation” mode. |
wp-includes/cache.php: wp_cache_get() | Retrieves the cache contents from the cache by key and group. |
wp-includes/cache.php: wp_cache_set() | Saves the data to the cache. |
wp-includes/l10n.php: __() | Retrieve the translation of $text. |
wp-includes/formatting.php: sanitize_option() | Sanitises various option values based on the nature of the option. |
wp-includes/functions.php: _deprecated_argument() | Mark a function argument as deprecated and inform when it has been used. |
wp-includes/functions.php: maybe_serialize() | Serialize data, if needed. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
wp-includes/option.php: add_option() | Adds a new option. |
wp-includes/option.php: wp_load_alloptions() | Loads and caches all autoloaded options, if available or all options. |
wp-includes/option.php: add_option | Fires before an option is added. |
wp-includes/option.php: add_option_{$option} | Fires after a specific option has been added. |
wp-includes/option.php: added_option | Fires after an option has been added. |
wp-includes/option.php: wp_protect_special_option() | Protects WordPress special option from being modified. |
wp-includes/option.php: get_option() | Retrieves an option value based on an option name. |
wp-includes/option.php: default_option_{$option} | Filters the default value for an option. |
wp-includes/wp-db.php: wpdb::query() | Performs a MySQL database query, using current database connection. |
wp-includes/wp-db.php: wpdb::prepare() | Prepares a SQL query for safe execution. |