Uses
Uses | Description |
---|---|
wp-admin/includes/ajax-actions.php: load-widgets.php | Fires early when editing the widgets displayed in sidebars. |
wp-admin/includes/ajax-actions.php: widgets.php | Fires early when editing the widgets displayed in sidebars. |
wp-admin/widgets.php: sidebar_admin_setup | Fires early before the Widgets administration screen loads, after scripts are enqueued. |
wp-includes/capabilities.php: current_user_can() | Returns whether the current user has the specified capability. |
wp-includes/pluggable.php: is_user_logged_in() | Determines whether the current visitor is a logged in user. |
wp-includes/pluggable.php: check_ajax_referer() | Verifies the Ajax request to prevent processing requests external of the blog. |
wp-includes/functions.php: wp_send_json_error() | Send a JSON response back to an Ajax request, indicating failure. |
wp-includes/functions.php: wp_send_json_success() | Send a JSON response back to an Ajax request, indicating success. |
wp-includes/functions.php: wp_die() | Kills WordPress execution and displays HTML page with an error message. |
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
wp-includes/class-wp-customize-widgets.php: WP_Customize_Widgets::call_widget_update() | Finds and invokes the widget update and control callbacks. |
wp-includes/class-wp-customize-widgets.php: WP_Customize_Widgets::sanitize_widget_js_instance() | Converts a widget instance into JSON-representable format. |
wp-includes/class-wp-customize-widgets.php: WP_Customize_Widgets::get_post_value() | Retrieves an unslashed post value or return a default. |
wp-includes/class-wp-customize-widgets.php: WP_Customize_Widgets::parse_widget_id() | Converts a widget ID into its id_base and number components. |
wp-includes/load.php: is_wp_error() | Check whether variable is a WordPress Error. |