wp_handle_comment_submission( array $comment_data ): WP_Comment|WP_Error
- Since
- 4.4.0
- Source
wp-includes/comment.php:3532
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|intThe ID of the post that relates to the comment.$authorstringThe name of the comment author.$emailstringThe comment author email address.$urlstringThe comment author URL.$commentstringThe content of the comment.$comment_parentstring|intdefault: 0The ID of this comment's parent, if any.$_wp_unfiltered_html_commentstringThe 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
- Scaling
- Constant
- Instructions
- 34–190
- Plugin surface
- 8 hooks
- Called by
- 0
Reaches the database via get_post().
No loop in the body: the same number of instructions runs whatever you pass in.
Executed per call on PHP 8.5, depending on the branch taken. The body compiles to 343.
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.
Nothing in core calls this; the cost is only what you spend yourself.
What it touches
- hookthird-party callbacks
do_action()called directly - querycontent query
get_post()called directly - optionoption read or write
get_option()called directly - cacheobject cache
wp_cache_get()one call below wp_handle_comment_submission() - serializeserialisation
maybe_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.
| When | Instructions | Calls it makes |
|---|---|---|
!isset($comment_data) && empty($post) | 34 | get_post(), do_action() |
!isset($comment_data) && !empty($post) && $status === "private" && !current_user_can() | 41 | get_post(), get_post_status(), current_user_can() |
empty($post) | 46–52 | absint(), get_comment(), get_post(), do_action() |
$comment_parent !== 0 | 48–52 | absint(), get_comment(), do_action(), __() |
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status === "trash" | 50–53 | get_post(), get_post_status(), get_post_status_object(), comments_open(), do_action() |
!empty($post) && $status === "private" && !current_user_can() | 53–59 | absint(), get_comment(), get_post(), get_post_status(), current_user_can() |
!isset($comment_data) && !empty($post) && $status !== "private" && !comments_open() | 53–56 | get_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" | 55 | get_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–61 | 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() | 58 | get_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–62 | get_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–63 | get_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–68 | absint(), 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–67 | 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 | 64 | get_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–71 | absint(), 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–73 | absint(), 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–76 | absint(), 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_obj | 69 | get_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–76 | absint(), 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–77 | absint(), 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–76 | get_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–81 | absint(), 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–82 | absint(), 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_obj | 76–82 | absint(), 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–79 | 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(), __() |
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && !$status_obj | 81–87 | absint(), 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–88 | 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(), __() |
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && get_option() | 83–91 | absint(), 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–91 | 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() && !->exists() && $comment_author_email !== "" && $comment_author !== "" && !is_email() | 87–92 | 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(), __() |
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && get_option() | 88–96 | absint(), 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–101 | 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() && !->exists() && $comment_author_email !== "" && $comment_author !== "" && !is_email() | 92–95 | 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(), __() |
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() | 93–103 | absint(), 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–103 | 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() && !get_option() && is_wp_error() | 96–102 | 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() && !current_user_can() && get_option() && $comment_author_email !== "" && $comment_author !== "" && !is_email() | 97–105 | 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(), __() |
!isset($comment_data) && !empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && $comment_content === "" | 97–102 | 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() |
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() | 98–108 | absint(), 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–105 | 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() |
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email !== "" && $comment_author !== "" && !is_email() | 99–107 | absint(), 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–105 | 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() |
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && wp_verify_nonce() && get_option() | 101–111 | 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() && !get_option() && is_wp_error() | 101–105 | 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" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email !== "" && $comment_author !== "" && !is_email() | 102–107 | 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(), __() |
!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–105 | 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() |
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !current_user_can() && get_option() | 103–116 | absint(), 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–108 | 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() |
!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–112 | absint(), 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–108 | 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" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && !get_option() && is_wp_error() | 106–115 | 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() | 106–113 | 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() && current_user_can() && get_option() | 106–116 | 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(), __() |
!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–115 | 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() | 107–115 | 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(), __() |
!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–113 | 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() |
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() | 108–121 | absint(), 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–113 | 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() |
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && is_wp_error() | 108–117 | absint(), 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–114 | 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" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && get_option() && is_wp_error() | 109–118 | 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() |
!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–120 | absint(), 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–117 | absint(), 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–118 | 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() && !get_option() && is_wp_error() | 111–117 | 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" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() | 111–118 | 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(), __() |
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && is_wp_error() | 111–120 | absint(), 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–117 | 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() |
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() && $comment_content === "" | 112–117 | 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() | 112–117 | 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() && current_user_can() && get_option() && $comment_author_email !== "" && $comment_author !== "" && !is_email() | 112–120 | 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(), __() |
!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–116 | 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() |
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && $comment_content === "" | 112–120 | absint(), 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–118 | 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" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && wp_verify_nonce() && get_option() | 113–126 | absint(), 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–116 | 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() |
!empty($post) && $status === "private" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && is_wp_error() | 113–122 | absint(), 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–117 | 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() |
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option() && is_wp_error() | 114–120 | 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() |
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email !== "" && $comment_author !== "" && !is_email() | 114–125 | absint(), 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–124 | 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" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && $comment_content === "" | 114–122 | absint(), 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–120 | 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() && !is_wp_error() | 115–121 | 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() && ->exists() && current_user_can() && wp_verify_nonce() && !get_option() && is_wp_error() | 116–125 | 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" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && is_wp_error() | 116–125 | absint(), 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–120 | 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 === "" | 117–125 | 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() |
!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–126 | 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() && !->exists() && !get_option() && !is_wp_error() | 117–123 | 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() && get_option() && $comment_author_email !== "" && $comment_author !== "" && !is_email() | 117–122 | 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() && $comment_content === "" | 117–125 | absint(), 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–121 | 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() |
!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–126 | 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() |
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && !get_option() && is_wp_error() | 118–130 | absint(), 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–131 | absint(), 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–127 | 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() && current_user_can() && get_option() | 118–131 | absint(), 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–128 | 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() && !get_option() && $comment_content === "" | 119–130 | absint(), 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–130 | absint(), 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–126 | 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() && is_wp_error() | 119–128 | absint(), 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–125 | 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" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && get_option() && $comment_content === "" | 120–128 | 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() && current_user_can() && !wp_verify_nonce() && get_option() && $comment_author_email !== "" && $comment_author !== "" && !is_email() | 120–128 | 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() && !->exists() && $comment_author_email !== "" && $comment_author !== "" && is_email() && $comment_content === "" | 120–128 | absint(), 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–126 | 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" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() | 120–129 | absint(), 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–124 | 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() && ->exists() && wp_verify_nonce() && !get_option() && is_wp_error() | 121–127 | 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" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && get_option() && is_wp_error() | 121–133 | absint(), 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–130 | 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() |
!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–130 | 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() |
!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–127 | 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() |
!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–128 | 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() |
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && get_option() && $comment_content === "" | 122–133 | absint(), 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–131 | 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() |
!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–130 | 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() |
!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–126 | 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(), __() |
!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–128 | 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() && !get_option() && is_wp_error() | 123–135 | absint(), 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–129 | 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" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() | 123–136 | absint(), 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–129 | 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" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() | 123–132 | absint(), 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–130 | 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" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() && $comment_content === "" | 124–135 | absint(), 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–135 | absint(), 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–133 | 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() |
!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–135 | absint(), 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–133 | absint(), 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–128 | 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() && !get_option() && !is_wp_error() | 124–133 | absint(), 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–130 | 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() |
!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–134 | 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() |
!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–133 | 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() | 125–130 | 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(), __() |
!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–133 | absint(), 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–129 | 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" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() | 125–134 | absint(), 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–138 | absint(), 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–132 | 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() |
!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–132 | 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() |
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && !wp_verify_nonce() && get_option() | 126–139 | absint(), 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–136 | 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() |
!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–136 | 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() && $comment_content === "" | 127–138 | absint(), 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–134 | 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() |
!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–132 | 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() && !is_wp_error() | 127–136 | absint(), 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–136 | 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() | 128–140 | absint(), 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–137 | 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() |
!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–134 | 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" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email !== "" && $comment_author !== "" && is_email() && !is_wp_error() | 128–132 | 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" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() | 128–137 | absint(), 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–140 | absint(), 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–141 | absint(), 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–138 | 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() | 129–138 | 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() |
!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–135 | 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() |
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && !get_option() && !is_wp_error() | 129–138 | absint(), 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–140 | absint(), 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–138 | absint(), 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–141 | absint(), 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–139 | 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 === "" | 130–138 | 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() |
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && !get_option() | 130–142 | absint(), 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–136 | 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() |
!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–135 | 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() |
!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–143 | absint(), 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–140 | 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() | 131–144 | absint(), 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–140 | absint(), 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–138 | 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" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && get_option() && $comment_content === "" | 132–143 | absint(), 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–141 | 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() |
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() && !is_wp_error() | 132–138 | 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(), __() |
!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–141 | 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() | 132–141 | 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() |
!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–143 | absint(), 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–141 | absint(), 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–141 | absint(), 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–138 | 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() | 133–145 | absint(), 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–139 | 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() |
!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–142 | 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() |
!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–141 | 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 === "" | 133–141 | 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() |
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && get_option() | 133–145 | absint(), 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–145 | absint(), 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–142 | 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() |
!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–137 | 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" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && !get_option() && $comment_content === "" | 134–145 | absint(), 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–146 | absint(), 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–140 | 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() | 134–140 | 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" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && !get_option() && !is_wp_error() | 134–146 | absint(), 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–145 | absint(), 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–143 | absint(), 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–146 | absint(), 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–144 | 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() |
!isset($comment_data) && !empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option() && !is_wp_error() | 135–141 | 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 === "" | 135–140 | 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() |
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() | 135–147 | absint(), 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–144 | absint(), 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–148 | absint(), 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–142 | 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" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && get_option() && is_wp_error() | 136–148 | absint(), 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–145 | 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" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !->exists() && $comment_author_email !== "" && $comment_author !== "" && is_email() | 136–145 | absint(), 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–146 | 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() && $comment_content === "" | 137–148 | absint(), 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–143 | 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() |
!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–143 | 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() | 137–143 | 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() |
!empty($post) && $status !== "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !current_user_can() && get_option() && !is_wp_error() | 137–149 | absint(), 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–148 | absint(), 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–148 | absint(), 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–146 | 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" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && !is_wp_error() | 137–146 | absint(), 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–147 | 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(), __() |
!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–144 | 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() |
!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–143 | 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 === "" | 138–143 | 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() |
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option() | 138–150 | absint(), 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–150 | absint(), 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–144 | 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() | 139–151 | absint(), 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–148 | 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() && !get_option() && !is_wp_error() | 139–151 | absint(), 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–151 | absint(), 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–150 | absint(), 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–151 | absint(), 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–149 | 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() && ->exists() && current_user_can() && wp_verify_nonce() && !get_option() | 140–152 | absint(), 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–149 | 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() | 140–146 | 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() && !->exists() && $comment_author_email !== "" && $comment_author !== "" && is_email() && !is_wp_error() | 140–149 | absint(), 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–149 | 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() && !->exists() && $comment_author_email !== "" && $comment_author !== "" && is_email() && !is_wp_error() | 140–149 | absint(), 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–149 | 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() |
!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–153 | absint(), 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–153 | absint(), 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–150 | 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() | 141–153 | absint(), 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–147 | 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() | 142–148 | 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() | 142–154 | absint(), 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–153 | absint(), 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–151 | 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" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && get_option() && !is_wp_error() | 142–154 | absint(), 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–153 | absint(), 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–148 | 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() | 143–152 | 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() |
!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–149 | 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" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && wp_verify_nonce() && get_option() | 143–155 | absint(), 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–156 | absint(), 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–150 | 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() && ->exists() && current_user_can() && wp_verify_nonce() && !get_option() && !is_wp_error() | 144–156 | absint(), 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–156 | absint(), 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–156 | absint(), 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–156 | absint(), 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–153 | 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() | 144–153 | 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() && wp_verify_nonce() && get_option() && $comment_author_email !== "" && $comment_author !== "" && is_email() && $comment_content === "" | 145–156 | absint(), 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–151 | 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() && ->exists() && wp_verify_nonce() && !get_option() | 145–157 | absint(), 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–151 | 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" && 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–157 | absint(), 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–156 | absint(), 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–156 | absint(), 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–154 | 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() | 145–154 | 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" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !get_option() | 145–157 | absint(), 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–154 | absint(), 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–151 | 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 === "" | 146–151 | 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() |
!empty($post) && $status === "private" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email !== "" && $comment_author !== "" && is_email() | 146–158 | absint(), 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–158 | absint(), 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–152 | 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() && ->exists() && current_user_can() && wp_verify_nonce() && get_option() && !is_wp_error() | 147–159 | absint(), 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–159 | absint(), 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–158 | absint(), 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–153 | 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() | 148–157 | 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() | 148–154 | 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" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && wp_verify_nonce() && get_option() | 148–160 | absint(), 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–157 | 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() | 148–157 | 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() && ->exists() && current_user_can() && get_option() | 148–160 | absint(), 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–161 | absint(), 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–161 | absint(), 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–161 | absint(), 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–161 | absint(), 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–155 | 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() | 149–155 | 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() && !get_option() && !is_wp_error() | 149–161 | absint(), 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–162 | absint(), 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–159 | 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" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && get_option() && $comment_author_email !== "" && $comment_author !== "" && is_email() && !is_wp_error() | 150–162 | absint(), 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–161 | absint(), 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–161 | absint(), 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–156 | 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() | 150–156 | 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" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !get_option() | 150–162 | absint(), 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–163 | absint(), 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–164 | absint(), 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–164 | absint(), 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–164 | absint(), 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–161 | 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" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && get_option() && !is_wp_error() | 152–164 | absint(), 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–159 | 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() && $comment_content === "" | 153–164 | absint(), 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–162 | 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() | 153–162 | 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" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && !wp_verify_nonce() && !get_option() | 153–165 | absint(), 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–159 | 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() | 153–159 | 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() && ->exists() && get_option() | 153–165 | absint(), 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–166 | absint(), 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–166 | absint(), 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–166 | absint(), 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–167 | absint(), 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–167 | absint(), 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–161 | 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() && wp_verify_nonce() && get_option() && $comment_author_email !== "" && $comment_author !== "" && is_email() | 156–168 | absint(), 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–165 | 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" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && current_user_can() && get_option() && $comment_author_email !== "" && $comment_author !== "" && is_email() | 156–168 | absint(), 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–168 | absint(), 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–169 | absint(), 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–169 | absint(), 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–163 | 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" && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && current_user_can() && get_option() && !is_wp_error() | 157–169 | absint(), 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–169 | absint(), 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–169 | absint(), 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–169 | absint(), 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–164 | 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() | 158–164 | 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" && current_user_can() && comments_open() && $status !== "trash" && $status_obj && !post_password_required() && ->exists() && !wp_verify_nonce() && !get_option() | 158–170 | absint(), 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–171 | absint(), 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–172 | absint(), 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–172 | absint(), 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–172 | absint(), 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–172 | absint(), 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–170 | 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() | 161–167 | 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() && get_option() && $comment_author_email !== "" && $comment_author !== "" && is_email() | 161–173 | absint(), 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–173 | absint(), 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–174 | absint(), 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–174 | absint(), 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–174 | absint(), 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–176 | absint(), 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–177 | absint(), 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–177 | absint(), 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–177 | absint(), 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–177 | absint(), 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–177 | absint(), 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–172 | 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() && ->exists() && !wp_verify_nonce() && !get_option() && !is_wp_error() | 167–179 | absint(), 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–180 | absint(), 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–181 | absint(), 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–182 | absint(), 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–182 | absint(), 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–185 | absint(), 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–185 | absint(), 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–190 | absint(), 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
| PHP | Compiled | Executed | Branches | Notes |
|---|---|---|---|---|
| 8.6-dev | 343 | 34–190 | 38 | |
| 8.5 | 343 | 34–190 | 38 | |
| 8.4 | 343 | 34–190 | 38 | 8 fewer instructions than PHP 8.3 |
| 8.3 | 351 | 34–190 | 38 | |
| 8.2 | 351 | 34–190 | 38 | |
| 8.1 | 351 | 34–190 | 38 | |
| 7.4 | 351 | 34–190 | 38 |
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:
- do_action( comment_reply_to_unapproved_comment )actionline 3575 (+43 into the body)
Fires when a comment reply is attempted to an unapproved comment.
- do_action( comment_id_not_found )actionline 3592 (+60 into the body)
Fires when a comment is attempted on a post that does not exist.
- do_action( comment_closed )actionline 3616 (+84 into the body)
Fires when a comment is attempted on a post that has comments closed.
- do_action( comment_on_trash )actionline 3629 (+97 into the body)
Fires when a comment is attempted on a trashed post.
- do_action( comment_on_draft )actionline 3642 (+110 into the body)
Fires when a comment is attempted on a post in draft mode.
- do_action( comment_on_password_protected )actionline 3658 (+126 into the body)
Fires when a comment is attempted on a password-protected post.
- do_action( pre_comment_on_post )actionline 3670 (+138 into the body)
Fires before a comment is posted.
- apply_filters( allow_empty_comment )filterline 3733 (+201 into the body)
Filters whether an empty comment should be allowed.
Uses · 24
- absint()Converts a value to non-negative integer.
- get_comment()Retrieves comment data given a comment ID or comment object.
- do_action()Calls the callback functions that have been added to an action hook.
- __()Retrieves the translation of $text.
- get_post()Retrieves post data given a post ID or post object.
- get_post_status()Retrieves the post status based on the post ID.
- current_user_can()Returns whether the current user has the specified capability.
- get_post_status_object()Retrieves a post status object by name.
- comments_open()Determines whether the current post is open for comments.
- post_password_required()Determines whether the post requires password and whether a correct password has been provided.
- wp_get_current_user()Retrieves the current user object.
- wp_verify_nonce()Verifies that a correct security nonce was used with time limit.
Show all 24
- kses_remove_filters()Removes all KSES input form content filters.
- kses_init_filters()Adds all KSES input form content filters.
- remove_filter()Removes a callback function from a filter hook.
- add_filter()Adds a callback function to a filter hook.
- get_option()Retrieves an option value based on an option name.
- is_email()Verifies that an email is valid.
- apply_filters()Calls the callback functions that have been added to a filter hook.
- wp_check_comment_data_max_lengths()Compares the lengths of comment data against the maximum character limits.
- is_wp_error()Checks whether the given variable is a WordPress Error.
- wp_new_comment()Adds a new comment to the database.
- wp_slash()Adds slashes to a string or recursively adds slashes to strings within an array.
- WP_Error::__construct()Initializes the error.
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.
Signature, return type and hooks compared across 5 parsed releases.
About this page
- Parsed data
- Generated from the wordpress-develop 6.8.8 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.