Edit Form Comment
Edit Form Comment
php
/**
* Edit comment form for inclusion in another file.
*
* @package WordPress
* @subpackage Administration
*/
/**
* @global WP_Comment $comment Global comment object.
*/
global $comment;
?>
<form name="post" action="comment.php" method="post" id="post">
<?php wp_nonce_field( 'update-comment_' . $comment->comment_ID ); ?>
<div class="wrap">
<h1><?php _e( 'Edit Comment' ); ?></h1>
<div id="poststuff">
<input type="hidden" name="action" value="editedcomment" />
<input type="hidden" name="comment_ID" value="<?php echo esc_attr( $comment-
>comment_ID ); ?>" />
<input type="hidden" name="comment_post_ID" value="<?php echo esc_attr( $comment-
>comment_post_ID ); ?>" />
<fieldset id="comment-status-radio">
<legend class="screen-reader-text">
<?php
/* translators: Hidden accessibility text. */
_e( 'Comment status' );
?>
</legend>
<label><input type="radio"<?php checked( $comment->comment_approved, '1' ); ?>
name="comment_status" value="1" /><?php _ex( 'Approved', 'comment status' );
?></label><br />
<label><input type="radio"<?php checked( $comment->comment_approved, '0' ); ?>
name="comment_status" value="0" /><?php _ex( 'Pending', 'comment status' );
?></label><br />
<label><input type="radio"<?php checked( $comment->comment_approved, 'spam' ); ?>
name="comment_status" value="spam" /><?php _ex( 'Spam', 'comment status' );
?></label>
</fieldset>
</div><!-- .misc-pub-section -->
<?php
$post_id = $comment->comment_post_ID;
if ( current_user_can( 'edit_post', $post_id ) ) {
$post_link = "<a href='" . esc_url( get_edit_post_link( $post_id ) ) . "'>";
$post_link .= esc_html( get_the_title( $post_id ) ) . '</a>';
} else {
$post_link = esc_html( get_the_title( $post_id ) );
}
?>
<?php
if ( $comment->comment_parent ) :
$parent = get_comment( $comment->comment_parent );
if ( $parent ) :
$parent_link = esc_url( get_comment_link( $parent ) );
$name = get_comment_author( $parent );
?>
<div class="misc-pub-section misc-pub-reply-to">
<?php
printf(
/* translators: %s: Comment link. */
__( 'In reply to: %s' ),
'<b><a href="' . $parent_link . '">' . $name . '</a></b>'
);
?>
</div>
<?php
endif;
endif;
?>
<?php
/**
* Filters miscellaneous actions for the edit comment form sidebar.
*
* @since 4.3.0
*
* @param string $html Output HTML to display miscellaneous action.
* @param WP_Comment $comment Current comment object.
*/
echo apply_filters( 'edit_comment_misc_actions', '', $comment );
?>
<div id="major-publishing-actions">
<div id="delete-action">
<?php echo "<a class='submitdelete deletion' href='" . wp_nonce_url( 'comment.php?
action=' . ( ! EMPTY_TRASH_DAYS ? 'deletecomment' : 'trashcomment' ) .
"&c=$comment->comment_ID&_wp_original_http_referer=" .
urlencode( wp_get_referer() ), 'delete-comment_' . $comment->comment_ID ) . "'>" .
( ! EMPTY_TRASH_DAYS ? __( 'Delete Permanently' ) : __( 'Move to Trash' ) ) .
"</a>\n"; ?>
</div>
<div id="publishing-action">
<?php submit_button( __( 'Update' ), 'primary large', 'save', false ); ?>
</div>
<div class="clear"></div>
</div>
</div>
</div>
</div><!-- /submitdiv -->
</div>
/**
* Fires when comment-specific meta boxes are added.
*
* @since 3.0.0
*
* @param WP_Comment $comment Comment object.
*/
do_action( 'add_meta_boxes_comment', $comment );
$referer = wp_get_referer();
?>
</div>