Uses
Uses | Description |
---|---|
wp-includes/post.php: wp_attachment_is() | Verifies an attachment is of a given type. |
wp-admin/includes/media.php: media_send_to_editor | Filters the HTML markup for a media item sent to the editor. |
wp-admin/includes/media.php: get_image_send_to_editor() | Retrieves the image HTML to send to the editor. |
wp-includes/capabilities.php: current_user_can() | Returns whether the current user has the specified capability. |
wp-includes/formatting.php: wp_unslash() | Remove slashes from a string or array of strings. |
wp-includes/formatting.php: esc_url() | Checks and cleans a URL. |
wp-includes/formatting.php: stripslashes_deep() | Navigates through an array, object, or scalar, and removes slashes from the values. |
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/link-template.php: get_attachment_link() | Retrieves the permalink for an attachment. |
wp-includes/plugin.php: remove_filter() | Removes a function from a specified filter hook. |
wp-includes/plugin.php: apply_filters() | Calls the callback functions that have been added to a filter hook. |
wp-includes/post.php: wp_update_post() | Update a post with new post data. |
wp-includes/post.php: get_post() | Retrieves post data given a post ID or post object. |