edit_comment(): int|WP_Error
- Since
- 2.0.0, 5.5.0, 7.1.0
- Source
wp-admin/includes/comment.php:54
Compatibility
- WordPress
- since 7.1.0
- PHP
- 7.4–8.6-dev
- 6.7.7
- 6.8.8
- 6.9.7
- 7.0.4
- 7.1.0
Present in every tracked release (6.7.7 to 7.1.0), and compiles on PHP 7.4 through 8.6-dev.
Return value
int|WP_Error- The value 1 if the comment was updated, 0 if not updated.
A WP_Error object on failure.
Performance profile
How much work a call to edit_comment() does, and what it touches: the algorithmic scaling, the Zend instruction count per call across PHP versions, the hooks it hands control to, and the core code that calls it. Measured from the compiled opcodes, not a stopwatch, so every number is identical on any machine running the same PHP version, and every function in core is ranked by cost.
- Cost class
- Heavy
- Scaling
- Scales with input
- Instructions
- 41–193
- Plugin surface
- None
- Called by
- 1
Reaches the database via get_comments().
The body loops, so the work grows with how much data it finds.
Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 291.
Nothing here hands control to plugin code.
1 place in core call this, so the cost is paid more often than your own code shows.
What it touches
- optionoption read or write
get_option()called directly - querycontent query
get_comments()called directly - hookthird-party callbacks
apply_filters()one call below edit_comment() - cacheobject cache
wp_cache_get()one call below edit_comment() - serializeserialisation
maybe_unserialize()one call below edit_comment()
Further down the call graph this can also reach transient. That is the worst case, several calls deep and usually down an error path, not what a normal call pays.
What one call costs · 12 distinct outcomes
One number would be a lie: the work depends on which branch runs. These are every distinct cost edit_comment() can have, taken from its control-flow graph on PHP 8.5.
| When | Instructions | Calls it makes |
|---|---|---|
current_user_can() && !isset($value) | 41–102 | current_user_can(), wp_update_comment() |
current_user_can() | 55–121 | current_user_can(), get_comment(), wp_update_comment() |
current_user_can() && $comment_parent !== false && get_option() | 75–105 | current_user_can(), get_comment(), get_option(), get_comment(), __() |
current_user_can() && $comment_parent !== false && get_option() | 79–108 | current_user_can(), get_comment(), get_option(), get_comment(), wp_get_comment_status(), __() |
current_user_can() && $comment_parent !== false && get_option() && !$parent_status | 102–181 | current_user_can(), get_comment(), get_option(), get_comment(), get_option(), wp_update_comment() |
current_user_can() && $comment_parent !== false && get_option() && !$parent_status && $max_thread_depth | 105–116 | current_user_can(), get_comment(), get_option(), get_comment(), get_option(), __(), get_comments() |
current_user_can() && $comment_parent !== false && get_option() && !$parent_status | 106–184 | current_user_can(), get_comment(), get_option(), get_comment(), wp_get_comment_status(), get_option(), wp_update_comment() |
current_user_can() && $comment_parent !== false && get_option() && !$parent_status && $max_thread_depth | 109–119 | current_user_can(), get_comment(), get_option(), get_comment(), wp_get_comment_status(), get_option(), __(), get_comments() |
current_user_can() && $comment_parent !== false && get_option() && !$parent_status && $max_thread_depth | 117–125 | current_user_can(), get_comment(), get_option(), get_comment(), get_option(), parent__in(), __(), get_comments() |
current_user_can() && $comment_parent !== false && get_option() && !$parent_status | 121–190 | current_user_can(), get_comment(), get_option(), get_comment(), get_option(), parent__in(), wp_update_comment() |
current_user_can() && $comment_parent !== false && get_option() && !$parent_status && $max_thread_depth | 121–128 | current_user_can(), get_comment(), get_option(), get_comment(), wp_get_comment_status(), get_option(), parent__in(), __(), get_comments() |
current_user_can() && $comment_parent !== false && get_option() && !$parent_status | 125–193 | current_user_can(), get_comment(), get_option(), get_comment(), wp_get_comment_status(), get_option(), parent__in(), wp_update_comment() |
This body has more branch combinations than are worth enumerating, so the table covers the outcomes found first rather than every one that exists.
Across PHP versions
| PHP | Compiled | Executed | Branches | Notes |
|---|---|---|---|---|
| 8.6-dev | 290 | 41–192 | 39 | 1 fewer instruction than PHP 8.5 |
| 8.5 | 291 | 41–193 | 39 | |
| 8.4 | 291 | 41–193 | 39 | |
| 8.3 | 291 | 41–193 | 39 | |
| 8.2 | 291 | 41–193 | 39 | |
| 8.1 | 291 | 41–193 | 39 | 4 fewer instructions than PHP 7.4 |
| 7.4 | 295 | 41–196 | 39 |
An instruction is not a fixed amount of time, so a matching count is not necessarily the same speed; what it rules out is a difference in the work itself.
Uses · 9
- current_user_can()Returns whether the current user has the specified capability.
- wp_die()Kills WordPress execution and displays HTML page with an error message.
- __()Retrieves the translation of $text.
- get_comment()Retrieves comment data given a comment ID or comment object.
- get_option()Retrieves an option value based on an option name.
- wp_get_comment_status()Retrieves the status of a comment by comment ID.
- get_comments()Retrieves a list of comments.
- wp_update_comment()Updates an existing comment in the database.
- WP_Error::__construct()Initializes the error.
Used by · 1
- wp_ajax_edit_comment()Handles editing a comment via AJAX.
Source code
function edit_comment() { if ( ! current_user_can( 'edit_comment', (int) $_POST['comment_ID'] ) ) { wp_die( __( 'Sorry, you are not allowed to edit comments on this post.' ) ); } if ( isset( $_POST['newcomment_author'] ) ) { $_POST['comment_author'] = $_POST['newcomment_author']; } if ( isset( $_POST['newcomment_author_email'] ) ) { $_POST['comment_author_email'] = $_POST['newcomment_author_email']; } if ( isset( $_POST['newcomment_author_url'] ) ) { $_POST['comment_author_url'] = $_POST['newcomment_author_url']; } if ( isset( $_POST['comment_status'] ) ) { $_POST['comment_approved'] = $_POST['comment_status']; } if ( isset( $_POST['content'] ) ) { $_POST['comment_content'] = $_POST['content']; } if ( isset( $_POST['comment_ID'] ) ) { $_POST['comment_ID'] = (int) $_POST['comment_ID']; } if ( isset( $_POST['comment_parent'] ) ) { $comment_id = (int) $_POST['comment_ID']; $comment_parent = (int) $_POST['comment_parent']; $_POST['comment_parent'] = $comment_parent; $comment = get_comment( $comment_id ); if ( $comment && $comment_parent && $comment_parent !== (int) $comment->comment_parent ) { if ( ! get_option( 'thread_comments' ) ) { return new WP_Error( 'comment_parent_invalid', __( 'The comment parent cannot be changed because threaded comments are disabled.' ) ); } if ( $comment_parent === $comment_id ) { return new WP_Error( 'comment_parent_invalid', __( 'A comment cannot be a reply to itself.' ) ); } $parent = get_comment( $comment_parent ); $parent_status = $parent ? wp_get_comment_status( $parent ) : false; $comment_status = $_POST['comment_approved'] ?? $comment->comment_approved; $comment_is_approved = in_array( $comment_status, array( 1, '1', 'approve' ), true ); // The parent must be a comment of the same type, on the same post, and publicly visible if the comment is approved. if ( ! $parent || (int) $parent->comment_post_ID !== (int) $comment->comment_post_ID || $parent->comment_type !== $comment->comment_type || in_array( $parent_status, array( 'spam', 'trash' ), true ) || ( $comment_is_approved && 'approved' !== $parent_status ) ) { return new WP_Error( 'comment_parent_invalid', __( 'Invalid parent comment.' ) ); } // Walk up the new parent's ancestors to prevent creating a threading loop. $ancestors = array(); $ancestor = $parent; $parent_depth = 1; while ( $ancestor && $ancestor->comment_parent && ! isset( $ancestors[ $ancestor->comment_ID ] ) ) { if ( (int) $ancestor->comment_parent === $comment_id ) { return new WP_Error( 'comment_parent_invalid', __( 'A comment cannot be a reply to one of its own replies.' ) ); } $ancestors[ $ancestor->comment_ID ] = true; ++$parent_depth; $ancestor = get_comment( $ancestor->comment_parent ); } $max_thread_depth = (int) get_option( 'thread_comments_depth' ); if ( $max_thread_depth ) { /* * The comment's replies move with it, so the whole subtree must stay within * the maximum depth. Measure its height one level of replies at a time, * stopping as soon as the subtree cannot fit, which also bounds the loopChangelog
Introduced in 2.0.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
$_POST['comment_parent'].from the docblockAbout this page
- Parsed data
- Generated from the wordpress-develop 7.1.0 tag, from
src/wp-admin/includes/comment.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it. - Corrections
- Something wrong on this page? Report it and it gets fixed in the next regeneration.