Uses
Uses | Description |
---|---|
wp-includes/theme.php: validate_theme_requirements() | Validates the theme requirements for WordPress version and PHP version. |
wp-includes/load.php: wp_is_recovery_mode() | Is WordPress in Recovery Mode. |
wp-includes/error-protection.php: wp_paused_themes() | Get the instance for storing paused extensions. |
wp-includes/theme.php: set_theme_mod() | Updates theme modification value for the current theme. |
wp-includes/theme.php: remove_theme_mod() | Removes theme modification name from current theme list. |
wp-includes/theme.php: get_theme_mod() | Retrieves theme modification value for the current theme. |
wp-includes/theme.php: get_raw_theme_root() | Gets the raw theme root relative to the content directory with no filters applied. |
wp-includes/theme.php: switch_theme | Fires after the theme is switched. |
wp-includes/theme.php: wp_get_theme() | Gets a WP_Theme object for a theme. |
wp-includes/load.php: is_admin() | Determines whether the current request is for an administrative interface page. |
wp-includes/functions.php: wp_die() | Kills WordPress execution and displays HTML page with an error message. |
wp-includes/plugin.php: current_action() | Retrieve the name of the current action. |
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action 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: add_option() | Adds a new option. |
wp-includes/option.php: get_option() | Retrieves an option value based on an option name. |
wp-includes/load.php: is_wp_error() | Check whether variable is a WordPress Error. |