Uses
Uses | Description |
---|---|
wp-includes/functions.php: wp_json_encode() | Encode a variable into JSON, with some sanity checks. |
wp-admin/includes/template.php: submit_button() | Echoes a submit button, with provided text and appropriate class(es). |
wp-admin/includes/media.php: post-upload-ui | Fires on the post upload UI screen. |
wp-admin/includes/media.php: upload_ui_over_quota | Fires when an upload will exceed the defined upload space quota for a network site. |
wp-admin/includes/media.php: pre-upload-ui | Fires just before the legacy (pre-3.5.0) upload interface is loaded. |
wp-admin/includes/media.php: upload_post_params | Filters the media upload post parameters. |
wp-admin/includes/media.php: plupload_init | Filters the default Plupload settings. |
wp-admin/includes/media.php: pre-plupload-upload-ui | Fires before the upload interface loads. |
wp-admin/includes/media.php: post-plupload-upload-ui | Fires after the upload interface loads. |
wp-admin/includes/media.php: pre-html-upload-ui | Fires before the upload button in the media upload interface. |
wp-admin/includes/media.php: post-html-upload-ui | Fires after the upload button in the media upload interface. |
wp-includes/l10n.php: __() | Retrieve the translation of $text. |
wp-includes/l10n.php: _e() | Display translated text. |
wp-includes/l10n.php: _ex() | Display translated string with gettext context. |
wp-includes/l10n.php: esc_attr_e() | Display translated text that has been escaped for safe use in an attribute. |
wp-includes/formatting.php: esc_html() | Escaping for HTML blocks. |
wp-includes/pluggable.php: wp_create_nonce() | Creates a cryptographic token tied to a specific action, user, user session, and window of time. |
wp-includes/vars.php: wp_is_mobile() | Test if the current browser runs on a mobile device (smart phone, tablet, etc.) |
wp-includes/load.php: is_multisite() | If Multisite is enabled. |
wp-includes/functions.php: _device_can_upload() | Test if the current device has the capability to upload files. |
wp-includes/functions.php: absint() | Convert a value to non-negative integer. |
wp-includes/functions.php: size_format() | Convert number of bytes largest unit bytes will fit into. |
wp-includes/link-template.php: admin_url() | Retrieves the URL to the admin area for the current site. |
wp-includes/plugin.php: do_action() | Execute functions hooked on a specific action hook. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/option.php: get_option() | Retrieves an option value based on an option name. |
wp-includes/media.php: wp_max_upload_size() | Determines the maximum upload size allowed in php.ini. |
wp-includes/ms-functions.php: is_upload_space_available() | Determines if there is any upload space left in the current blog’s quota. |
wp-includes/load.php: is_wp_error() | Check whether variable is a WordPress Error. |