wppaste
WordPress

wp_handle_comment_submission( array $comment_data ): WP_Comment|WP_Error

Since
4.4.0
Source
wp-includes/comment.php:3489
Handles the submission of a comment, usually posted to wp-comments-post.php via a comment form.

Description

This function expects unslashed data, as opposed to functions such as wp_new_comment() which expect slashed data.

Compatibility

WordPress
since 4.4.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.

Parameters

$comment_dataarray
Comment data.
  • $comment_post_IDstring|int

    The ID of the post that relates to the comment.
  • $authorstring

    The name of the comment author.
  • $emailstring

    The comment author email address.
  • $urlstring

    The comment author URL.
  • $commentstring

    The content of the comment.
  • $comment_parentstring|intdefault: 0

    The ID of this comment's parent, if any.
  • $_wp_unfiltered_html_commentstring

    The nonce value for allowing unfiltered HTML.

Return value

WP_Comment|WP_Error
A WP_Comment object on success, a WP_Error object on failure.

Performance profile

How much work a call to wp_handle_comment_submission() 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

Reaches the database via get_post().

Scaling
Constant

No loop in the body: the same number of instructions runs whatever you pass in.

Instructions
34–190

Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 343.

Plugin surface
8 hooks

Third-party callbacks on 'comment_reply_to_unapproved_comment', 'comment_id_not_found', 'comment_closed' run inside this call, and their cost is not bounded by anything here.

Called by
0

Nothing in core calls this; the cost is only what you spend yourself.

What it touches

  • hookthird-party callbacksdo_action()called directly
  • querycontent queryget_post()called directly
  • optionoption read or writeget_option()called directly
  • cacheobject cachewp_cache_get()one call below wp_handle_comment_submission()
  • serializeserialisationmaybe_unserialize()one call below wp_handle_comment_submission()

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 · 369 distinct outcomes

One number would be a lie: the work depends on which branch runs. These are every distinct cost wp_handle_comment_submission() can have, taken from its control-flow graph on PHP 8.5.

WhenInstructionsCalls it makes
!isset($comment_data) && empty($post)34get_post(), do_action()
!isset($comment_data) && !empty($post) && $status === "private" && !current_user_can()41get_post(), get_post_status(), current_user_can()
empty($post)46–52absint(), get_comment(), get_post(), do_action()
$comment_parent !== 048–52absint(), get_comment(), do_action(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status === "trash"50–53get_post(), get_post_status(), get_post_status_object(), comments_open(), do_action()
!empty($post) && $status === "private" && !current_user_can()53–59absint(), get_comment(), get_post(), get_post_status(), current_user_can()
!isset($comment_data) && !empty($post) && $status !== "private" && !comments_open()53–56get_post(), get_post_status(), get_post_status_object(), comments_open(), do_action(), __()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status === "trash"55get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), do_action()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && post_password_required()56–61get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && !comments_open()58get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), do_action(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && !$status_obj && !current_user_can()59–62get_post(), get_post_status(), get_post_status_object(), comments_open(), do_action(), current_user_can()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && post_password_required()61–63get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action()
357 further outcomes, up to 190 instructions
!empty($post) && $status !== "private" && comments_open() && $status === "trash"62–68absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), do_action()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && !$status_obj && current_user_can()64–67get_post(), get_post_status(), get_post_status_object(), comments_open(), do_action(), current_user_can(), __()
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && !$status_obj64get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), do_action(), current_user_can()
!empty($post) && $status !== "private" && !comments_open()65–71absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), do_action(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status === "trash"67–73absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), do_action()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && post_password_required()68–76absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && !$status_obj69get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), do_action(), current_user_can(), __()
!empty($post) && $status === "private" && current_user_can() && !comments_open()70–76absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), do_action(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && !$status_obj && !current_user_can()71–77absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), do_action(), current_user_can()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && get_option()71–76get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && post_password_required()73–81absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && !$status_obj && current_user_can()76–82absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), do_action(), current_user_can(), __()
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && !$status_obj76–82absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), do_action(), current_user_can()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && get_option()76–79get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && !$status_obj81–87absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), do_action(), current_user_can(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists()81–88get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && get_option()83–91absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), __()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists()86–91get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && !is_email()87–92get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && get_option()88–96absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !current_user_can() && get_option()91–101get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), __()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && !is_email()92–95get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists()93–103absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), __()
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option()96–103get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && is_wp_error()96–102get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && !is_email()97–105get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && $comment_content === ""97–102get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists()98–108absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && is_wp_error()99–105get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && !is_email()99–107absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && $comment_content === ""100–105get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && wp_verify_nonce() && get_option()101–111get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), __()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && is_wp_error()101–105get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && !is_email()102–107get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), __()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && $comment_content === ""102–105get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !current_user_can() && get_option()103–116absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), __()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && is_wp_error()104–108get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && !is_email()104–112absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), __()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && $comment_content === ""105–108get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && !get_option() && is_wp_error()106–115get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && wp_verify_nonce() && get_option()106–113get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && get_option()106–116get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && !get_option() && $comment_content === ""107–115get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && !is_email()107–115get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && is_email() && is_wp_error()107–113get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option()108–121absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && is_email() && $comment_content === ""108–113get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && is_wp_error()108–117absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option()108–114get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && get_option() && is_wp_error()109–118get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && !is_email()109–120absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && $comment_content === ""109–117absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && get_option() && $comment_content === ""110–118get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() && is_wp_error()111–117get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option()111–118get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && is_wp_error()111–120absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required()111–117get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() && $comment_content === ""112–117get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && !is_email()112–117get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && !is_email()112–120get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), __()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && is_email() && is_wp_error()112–116get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && $comment_content === ""112–120absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && !is_wp_error()112–118get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && wp_verify_nonce() && get_option()113–126absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), __()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && is_email() && $comment_content === ""113–116get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && is_wp_error()113–122absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option()113–117get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option() && is_wp_error()114–120get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && !is_email()114–125absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && !wp_verify_nonce() && get_option()114–124get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && $comment_content === ""114–122absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option() && $comment_content === ""115–120get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !is_wp_error()115–121get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && !get_option() && is_wp_error()116–125get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && is_wp_error()116–125absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required()116–120get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && !get_option() && $comment_content === ""117–125get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && is_wp_error()117–126get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && !is_wp_error()117–123get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && !is_email()117–122get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && $comment_content === ""117–125absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && !is_wp_error()117–121get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && $comment_content === ""118–126get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && !get_option() && is_wp_error()118–130absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && wp_verify_nonce() && get_option()118–131absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && !get_option()118–127get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && get_option()118–131absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && get_option() && is_wp_error()119–128get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && !get_option() && $comment_content === ""119–130absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && !is_email()119–130absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !wp_verify_nonce() && get_option()119–126get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && is_email() && is_wp_error()119–128absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && is_email()119–125get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && get_option() && $comment_content === ""120–128get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && !is_email()120–128get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && is_email() && $comment_content === ""120–128absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !is_wp_error()120–126get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option()120–129absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !is_wp_error()120–124get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && !get_option() && is_wp_error()121–127get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && get_option() && is_wp_error()121–133absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && get_option()121–130get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !get_option() && is_wp_error()121–130get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && !get_option() && $comment_content === ""122–127get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && is_wp_error()122–128get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && get_option() && $comment_content === ""122–133absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && !get_option() && !is_wp_error()122–131get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !get_option() && $comment_content === ""122–130get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && !is_wp_error()122–126get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && $comment_content === ""123–128get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() && is_wp_error()123–135absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option()123–129get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option()123–136absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()123–129get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required()123–132absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && get_option() && is_wp_error()124–130get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() && $comment_content === ""124–135absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && !is_email()124–135absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && get_option() && is_wp_error()124–133get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && !is_email()124–135absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && is_email() && is_wp_error()124–133absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && is_email()124–128get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && !is_wp_error()124–133absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && get_option() && $comment_content === ""125–130get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && get_option() && !is_wp_error()125–134get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && get_option() && $comment_content === ""125–133get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && !is_email()125–130get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && is_email() && $comment_content === ""125–133absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !is_wp_error()125–129get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option()125–134absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option() && is_wp_error()126–138absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option()126–132get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() && is_wp_error()126–132get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && !wp_verify_nonce() && get_option()126–139absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && is_wp_error()127–136get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && !get_option() && !is_wp_error()127–136get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option() && $comment_content === ""127–138absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() && !is_wp_error()127–134get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() && $comment_content === ""127–132get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !is_wp_error()127–136absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && $comment_content === ""128–136get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && !get_option() && is_wp_error()128–140absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && !get_option()128–137get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()128–134get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()128–132get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required()128–137absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && !get_option() && $comment_content === ""129–140absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && is_wp_error()129–141absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email()129–138get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && !get_option() && is_wp_error()129–138get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option() && is_wp_error()129–135get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && !is_wp_error()129–138absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && !is_email()129–140absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && !is_wp_error()129–138absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && $comment_content === ""130–141absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && get_option() && !is_wp_error()130–139get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && !get_option() && $comment_content === ""130–138get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && !get_option()130–142absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option() && !is_wp_error()130–136get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option() && $comment_content === ""130–135get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && get_option() && is_wp_error()131–143absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && get_option()131–140get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !wp_verify_nonce() && get_option()131–144absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && is_email()131–140absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && is_wp_error()132–138get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && get_option() && $comment_content === ""132–143absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && !get_option() && !is_wp_error()132–141get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() && !is_wp_error()132–138get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && is_wp_error()132–141get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && get_option() && is_wp_error()132–141get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && !is_email()132–143absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !is_wp_error()132–141absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !is_wp_error()132–141absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && $comment_content === ""133–138get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && !get_option() && is_wp_error()133–145absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && !get_option()133–139get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()133–142get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && $comment_content === ""133–141get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && get_option() && $comment_content === ""133–141get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && get_option()133–145absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !get_option() && is_wp_error()133–145absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !get_option()133–142get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()133–137get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && !get_option() && $comment_content === ""134–145absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && is_wp_error()134–146absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email()134–140get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && !get_option() && is_wp_error()134–140get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && !get_option() && !is_wp_error()134–146absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !get_option() && $comment_content === ""134–145absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && !is_wp_error()134–143absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && $comment_content === ""135–146absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && get_option() && !is_wp_error()135–144get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option() && !is_wp_error()135–141get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && !get_option() && $comment_content === ""135–140get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option()135–147absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()135–144absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && get_option() && is_wp_error()136–148absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && get_option()136–142get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && get_option() && is_wp_error()136–148absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && get_option()136–145get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && is_email()136–145absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && !get_option() && !is_wp_error()137–146get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && get_option() && $comment_content === ""137–148absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && !get_option() && !is_wp_error()137–143get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && is_wp_error()137–143get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && get_option() && is_wp_error()137–143get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && get_option() && !is_wp_error()137–149absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && get_option() && $comment_content === ""137–148absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && !is_email()137–148absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !get_option() && !is_wp_error()137–146get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !is_wp_error()137–146absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()138–147get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()138–144get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && $comment_content === ""138–143get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && get_option() && $comment_content === ""138–143get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option()138–150absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() && is_wp_error()138–150absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option()138–144get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && is_wp_error()139–151absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email()139–148get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && !get_option() && !is_wp_error()139–151absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() && !is_wp_error()139–151absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() && $comment_content === ""139–150absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && $comment_content === ""140–151absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && get_option() && !is_wp_error()140–149get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && !get_option()140–152absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && is_wp_error()140–149get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && get_option() && !is_wp_error()140–146get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()140–149absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && get_option() && !is_wp_error()140–149get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()140–149absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && $comment_content === ""141–149get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email()141–153absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && !get_option() && is_wp_error()141–153absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && !get_option()141–150get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option() && is_wp_error()141–153absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option()141–147get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && !get_option() && !is_wp_error()142–148get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && get_option() && !is_wp_error()142–154absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && !get_option() && $comment_content === ""142–153absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !get_option() && !is_wp_error()142–151get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option() && !is_wp_error()142–154absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option() && $comment_content === ""142–153absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() && !is_wp_error()142–148get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()143–152get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()143–149get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && get_option()143–155absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && is_wp_error()144–156absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email()144–150get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && !get_option() && !is_wp_error()144–156absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() && !is_wp_error()144–156absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && is_wp_error()144–156absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && get_option() && is_wp_error()144–156absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email()144–153get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && get_option()144–153get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && $comment_content === ""145–156absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && get_option() && !is_wp_error()145–151get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && !get_option()145–157absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && is_wp_error()145–151get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()145–157absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && $comment_content === ""145–156absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && get_option() && $comment_content === ""145–156absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && get_option() && !is_wp_error()145–154get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && !get_option() && !is_wp_error()145–154get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !get_option()145–157absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()145–154absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), get_option(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option() && !is_wp_error()145–151get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && $comment_content === ""146–151get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email()146–158absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && !get_option() && is_wp_error()146–158absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && !get_option()146–152get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && get_option() && !is_wp_error()147–159absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option() && !is_wp_error()147–159absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && !get_option() && $comment_content === ""147–158absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() && !is_wp_error()147–153get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()148–157get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()148–154get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && get_option()148–160absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()148–157get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && get_option() && !is_wp_error()148–157get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && get_option()148–160absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && !get_option() && !is_wp_error()149–161absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && !get_option() && !is_wp_error()149–161absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && is_wp_error()149–161absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && get_option() && is_wp_error()149–161absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email()149–155get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && get_option()149–155get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !get_option() && !is_wp_error()149–161absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()150–162absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && !get_option() && !is_wp_error()150–159get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()150–162absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && $comment_content === ""150–161absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), __(), comment_post_ID()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && get_option() && $comment_content === ""150–161absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option() && !is_wp_error()150–156get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && !get_option() && !is_wp_error()150–156get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option()150–162absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email()151–163absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && get_option() && !is_wp_error()152–164absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && is_wp_error()152–164absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && get_option() && !is_wp_error()152–164absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email()152–161get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && get_option() && !is_wp_error()152–164absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()153–159get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && $comment_content === ""153–164absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()153–162get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && get_option() && !is_wp_error()153–162get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && !get_option()153–165absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()153–159get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && get_option() && !is_wp_error()153–159get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option()153–165absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && !get_option() && !is_wp_error()154–166absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !get_option() && !is_wp_error()154–166absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() && !is_wp_error()154–166absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()155–167absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()155–167absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && !get_option() && !is_wp_error()155–161get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email()156–168absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()156–165get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email()156–168absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && get_option()156–168absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && get_option() && !is_wp_error()157–169absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && is_wp_error()157–169absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email()157–163get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && get_option() && !is_wp_error()157–169absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && !get_option() && !is_wp_error()157–169absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option() && !is_wp_error()157–169absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && $comment_content === ""158–169absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), __(), comment_post_ID()
!isset($comment_data) && !empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()158–164get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && get_option() && !is_wp_error()158–164get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && !get_option()158–170absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() && !is_wp_error()159–171absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()160–172absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()160–172absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()160–172absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && get_option() && !is_wp_error()160–172absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()161–170get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()161–167get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email()161–173absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && get_option()161–173absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && !get_option() && !is_wp_error()162–174absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option() && !is_wp_error()162–174absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && !get_option() && !is_wp_error()162–174absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email()164–176absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()165–177absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()165–177absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && get_option() && !is_wp_error()165–177absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()165–177absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && get_option() && !is_wp_error()165–177absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()166–172get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && !get_option() && !is_wp_error()167–179absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()168–180absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email()169–181absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()170–182absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && get_option() && !is_wp_error()170–182absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()173–185absint(), get_comment(), get_post(), get_post_status(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()173–185absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), get_comment()
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !wp_verify_nonce() && get_option() && $comment_author_email != "" && $comment_author != "" && is_email() && !is_wp_error()178–190absint(), get_comment(), get_post(), get_post_status(), current_user_can(), get_post_status_object(), comments_open(), post_password_required(), do_action(), wp_get_current_user(), ->exists(), current_user_can(), wp_verify_nonce(), kses_remove_filters(), kses_init_filters(), remove_filter(), add_filter(), get_option(), ->exists(), is_email(), compact(), apply_filters(), wp_check_comment_data_max_lengths(), is_wp_error(), wp_slash(), wp_new_comment(), is_wp_error(), __()

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

PHPCompiledExecutedBranchesNotes
8.6-dev34334–19038
8.534334–19038
8.434334–190388 fewer instructions than PHP 8.3
8.335134–19038
8.235134–19038
8.135134–19038
7.435134–19038

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.

Hooks and filters fired · 8

8 hooks fire while wp_handle_comment_submission() runs, in this order:

  1. do_action( comment_reply_to_unapproved_comment )actionline 3532 (+43 into the body)

    Fires when a comment reply is attempted to an unapproved comment.

  2. do_action( comment_id_not_found )actionline 3549 (+60 into the body)

    Fires when a comment is attempted on a post that does not exist.

  3. do_action( comment_closed )actionline 3573 (+84 into the body)

    Fires when a comment is attempted on a post that has comments closed.

  4. do_action( comment_on_trash )actionline 3586 (+97 into the body)

    Fires when a comment is attempted on a trashed post.

  5. do_action( comment_on_draft )actionline 3599 (+110 into the body)

    Fires when a comment is attempted on a post in draft mode.

  6. do_action( comment_on_password_protected )actionline 3615 (+126 into the body)

    Fires when a comment is attempted on a password-protected post.

  7. do_action( pre_comment_on_post )actionline 3627 (+138 into the body)

    Fires before a comment is posted.

  8. apply_filters( allow_empty_comment )filterline 3690 (+201 into the body)

    Filters whether an empty comment should be allowed.

Uses · 24

Show all 24

Source code

function wp_handle_comment_submission( $comment_data ) {	$comment_post_id      = 0;	$comment_author       = '';	$comment_author_email = '';	$comment_author_url   = '';	$comment_content      = '';	$comment_parent       = 0;	$user_id              = 0; 	if ( isset( $comment_data['comment_post_ID'] ) ) {		$comment_post_id = (int) $comment_data['comment_post_ID'];	}	if ( isset( $comment_data['author'] ) && is_string( $comment_data['author'] ) ) {		$comment_author = trim( strip_tags( $comment_data['author'] ) );	}	if ( isset( $comment_data['email'] ) && is_string( $comment_data['email'] ) ) {		$comment_author_email = trim( $comment_data['email'] );	}	if ( isset( $comment_data['url'] ) && is_string( $comment_data['url'] ) ) {		$comment_author_url = trim( $comment_data['url'] );	}	if ( isset( $comment_data['comment'] ) && is_string( $comment_data['comment'] ) ) {		$comment_content = trim( $comment_data['comment'] );	}	if ( isset( $comment_data['comment_parent'] ) ) {		$comment_parent        = absint( $comment_data['comment_parent'] );		$comment_parent_object = get_comment( $comment_parent ); 		if (			0 !== $comment_parent &&			(				! $comment_parent_object instanceof WP_Comment ||				0 === (int) $comment_parent_object->comment_approved			)		) {			/**			 * Fires when a comment reply is attempted to an unapproved comment.			 *			 * @since 6.2.0			 *			 * @param int $comment_post_id Post ID.			 * @param int $comment_parent  Parent comment ID.			 */			do_action( 'comment_reply_to_unapproved_comment', $comment_post_id, $comment_parent ); 			return new WP_Error( 'comment_reply_to_unapproved_comment', __( 'Sorry, replies to unapproved comments are not allowed.' ), 403 );		}	} 	$post = get_post( $comment_post_id ); 	if ( empty( $post->comment_status ) ) { 		/**		 * Fires when a comment is attempted on a post that does not exist.		 *		 * @since 1.5.0		 *		 * @param int $comment_post_id Post ID.		 */		do_action( 'comment_id_not_found', $comment_post_id ); 		return new WP_Error( 'comment_id_not_found' ); 	} 	// get_post_status() will get the parent status for attachments.	$status = get_post_status( $post ); 	if ( ( 'private' === $status ) && ! current_user_can( 'read_post', $comment_post_id ) ) {		return new WP_Error( 'comment_id_not_found' );	} 	$status_obj = get_post_status_object( $status ); 	if ( ! comments_open( $comment_post_id ) ) { 		/**		 * Fires when a comment is attempted on a post that has comments closed.		 *

Changelog

Introduced in 4.4.0. Unchanged from 6.7.7 through 7.1.0.

  1. 6.7.7
  2. 6.8.8
  3. 6.9.7
  4. 7.0.4
  5. 7.1.0

Signature, return type and hooks compared across 5 parsed releases.

About this page

Parsed data
Generated from the wordpress-develop 6.7.7 tag, from src/wp-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.