Uses
Uses | Description |
---|---|
wp-admin/includes/post.php: edit_post() | Update an existing post with values provided in $_POST. |
wp-includes/l10n.php: __() | Retrieve the translation of $text. |
wp-includes/formatting.php: esc_html() | Escaping for HTML blocks. |
wp-includes/pluggable.php: check_ajax_referer() | Verifies the Ajax request to prevent processing requests external of the blog. |
wp-includes/pluggable.php: get_userdata() | Retrieve user info by user ID. |
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: date_i18n() | Retrieves the date in localized format, based on a sum of Unix timestamp and timezone offset in seconds. |
wp-includes/functions.php: mysql2date() | Convert given MySQL date string into a different format. |
wp-includes/post.php: get_post_meta() | Retrieves a post meta field for the given post ID. |
wp-includes/post.php: get_post() | Retrieves post data given a post ID or post object. |
wp-includes/load.php: is_wp_error() | Check whether variable is a WordPress Error. |