wp_xmlrpc_server::wp_newComment( array $args ): int|IXR_Error
- Since
- 2.7.0
- Source
wp-includes/class-wp-xmlrpc-server.php:3912
Compatibility
- WordPress
- since 2.7.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
$argsarray- Method arguments. Note: arguments must be ordered as documented.
$0intBlog ID (unused).$1stringUsername.$2stringPassword.$3string|intPost ID or URL.$4arrayContent structure.
Return value
int|IXR_Error- See wp_new_comment().
Performance profile
How much work a call to wp_xmlrpc_server::wp_newComment() 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
- 23–152
- Plugin surface
- 4 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 273.
Third-party callbacks on 'xmlrpc_allow_anonymous_comments', 'allow_empty_comment', 'xmlrpc_call' 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
apply_filters()called directly - optionoption read or write
get_option()called directly - querycontent query
get_post()called directly - cacheobject cache
wp_cache_get()one call below wp_xmlrpc_server::wp_newComment() - serializeserialisation
maybe_unserialize()one call below wp_xmlrpc_server::wp_newComment()
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 · 424 distinct outcomes
One number would be a lie: the work depends on which branch runs. These are every distinct cost wp_xmlrpc_server::wp_newComment() can have, taken from its control-flow graph on PHP 8.5.
| When | Instructions | Calls it makes |
|---|---|---|
| always | 23 | ->escape(), apply_filters(), ->login() |
!$post | 35 | ->escape(), apply_filters(), ->login(), url_to_postid(), __() |
$post | 36 | ->escape(), apply_filters(), ->login(), absint(), __() |
!$post && !get_post() | 39 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), __() |
$post && !get_post() | 40 | ->escape(), apply_filters(), ->login(), absint(), get_post(), __() |
!$post && get_post() && !comments_open() | 43 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), __() |
$post && get_post() && !comments_open() | 44 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), __() |
!$post && get_post() && comments_open() && !current_user_can() && post_password_required() | 57 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), __() |
!$post && get_post() && comments_open() && !current_user_can() | 58 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), __() |
$post && get_post() && comments_open() && !current_user_can() && post_password_required() | 58 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), __() |
$post && get_post() && comments_open() && !current_user_can() | 59 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), __() |
!$post && get_post() && comments_open() | 63 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), __() |
412 further outcomes, up to 144 instructions
$post && get_post() && comments_open() | 64 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), __() |
!get_option() && !$post && get_post() && comments_open() && !current_user_can() | 64 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), __() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() | 67 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), __() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() | 68 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), __() |
!$post && get_post() && comments_open() && get_option() | 81–93 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), __(), comment_post_ID() |
$post && get_post() && comments_open() && get_option() | 82–94 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), __(), comment_post_ID() |
!$post && get_post() && comments_open() && current_user_can() && get_option() | 86–98 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), __(), comment_post_ID() |
!$post && get_post() && comments_open() && current_user_can() && get_option() | 86–98 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), __(), comment_post_ID() |
$post && get_post() && comments_open() && current_user_can() && get_option() | 87–99 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), __(), comment_post_ID() |
$post && get_post() && comments_open() && current_user_can() && get_option() | 87–99 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), __(), comment_post_ID() |
!$post && get_post() && comments_open() | 87–99 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), __(), comment_post_ID() |
!$post && get_post() && comments_open() && get_option() && !is_email() | 90–99 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), __() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && get_option() | 90–102 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), __(), comment_post_ID() |
$post && get_post() && comments_open() && get_option() && !is_email() | 91–100 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), __() |
!$post && get_post() && comments_open() && current_user_can() && get_option() | 91–103 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), __(), comment_post_ID() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && get_option() | 91–103 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), __(), comment_post_ID() |
!$post && get_post() && comments_open() && !isset($content_struct) && !get_option() | 92–101 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), apply_filters(), __() |
$post && get_post() && comments_open() && current_user_can() && get_option() | 92–104 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), __(), comment_post_ID() |
!$post && get_post() && comments_open() && current_user_can() | 92–104 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), __(), comment_post_ID() |
!$post && get_post() && comments_open() && current_user_can() | 92–104 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), __(), comment_post_ID() |
$post && get_post() && comments_open() && !isset($content_struct) && !get_option() | 93–102 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && get_option() && !is_email() | 95–104 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), __() |
!$post && get_post() && comments_open() && current_user_can() && get_option() && !is_email() | 95–104 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), __() |
!$post && get_post() && comments_open() && !post_password_required() && get_option() | 95–107 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), __(), comment_post_ID() |
$post && get_post() && comments_open() && current_user_can() && get_option() && !is_email() | 96–105 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), __() |
$post && get_post() && comments_open() && current_user_can() && get_option() && !is_email() | 96–105 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), __() |
!$post && get_post() && comments_open() && !is_email() | 96–105 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), __() |
!$post && get_post() && comments_open() && !isset($content_struct) | 96 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), __() |
$post && get_post() && comments_open() && !post_password_required() && get_option() | 96–108 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), __(), comment_post_ID() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() | 97–106 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() | 97–106 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), apply_filters(), __() |
$post && get_post() && comments_open() && !isset($content_struct) | 97 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) | 97–100 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), __(), comment_post_ID() |
!$post && get_post() && comments_open() && !get_option() && isset($content_struct) | 98–107 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), absint(), apply_filters(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() | 98–107 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), apply_filters(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() | 98–107 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), apply_filters(), __() |
!get_option() && !$post && get_post() && comments_open() && !isset($content_struct) | 98–107 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), apply_filters(), __() |
$post && get_post() && comments_open() && !get_option() && isset($content_struct) | 99–108 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), absint(), apply_filters(), __() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && get_option() && !is_email() | 99–108 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), is_email(), __() |
!$post && get_post() && comments_open() && current_user_can() && get_option() && !is_email() | 100–109 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), __() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && get_option() && !is_email() | 100–109 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), is_email(), __() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && !get_option() | 101–110 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), apply_filters(), __() |
$post && get_post() && comments_open() && current_user_can() && get_option() && !is_email() | 101–110 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), __() |
!$post && get_post() && comments_open() && current_user_can() && !is_email() | 101–110 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), __() |
!$post && get_post() && comments_open() && current_user_can() && !is_email() | 101–110 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) | 101 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) | 101 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() | 102–111 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), apply_filters(), __() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && !get_option() | 102–111 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), apply_filters(), __() |
!$post && get_post() && comments_open() && isset($content_struct) | 102 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) | 102 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) | 102 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), __() |
!get_option() && !$post && get_post() && comments_open() && !isset($content_struct) | 102 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) | 103–112 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) | 103–112 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), absint(), apply_filters(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() | 103–112 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), apply_filters(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) | 103–112 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), apply_filters(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) | 103–112 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), apply_filters(), __() |
$post && get_post() && comments_open() && isset($content_struct) | 103 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), __() |
$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) | 104–113 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), __() |
$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) | 104–113 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), absint(), apply_filters(), __() |
!get_option() && !$post && get_post() && comments_open() && isset($content_struct) | 104–113 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), absint(), apply_filters(), __() |
!$post && get_post() && comments_open() && !isset($content_struct) && !get_option() && !is_wp_error() | 104–116 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && !isset($content_struct) && !get_option() && is_wp_error() | 104–116 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && !post_password_required() && get_option() && !is_email() | 104–113 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), is_email(), __() |
!$post && get_post() && comments_open() && !isset($content_struct) && get_option() && is_email() | 105–114 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), apply_filters(), __() |
$post && get_post() && comments_open() && !isset($content_struct) && !get_option() && !is_wp_error() | 105–117 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && !isset($content_struct) && !get_option() && is_wp_error() | 105–117 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && !post_password_required() && get_option() && !is_email() | 105–114 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), is_email(), __() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) | 105 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), __() |
$post && get_post() && comments_open() && !isset($content_struct) && get_option() && is_email() | 106–115 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), apply_filters(), __() |
!$post && get_post() && comments_open() && !isset($content_struct) && !get_option() && !is_wp_error() | 106–118 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && !get_option() | 106–115 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_email() | 106 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) | 106 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), __() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) | 106 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), __() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !get_option() && isset($content_struct) | 107–116 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), absint(), apply_filters(), __() |
$post && get_post() && comments_open() && !isset($content_struct) && !get_option() && !is_wp_error() | 107–119 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && !get_option() | 107–116 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && isset($content_struct) | 107 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && isset($content_struct) | 107 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) | 107 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) | 107 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) | 107 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) | 108–117 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), __() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !get_option() && isset($content_struct) | 108–117 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), absint(), apply_filters(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) | 108–111 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), apply_filters(), __() |
$post && get_post() && comments_open() && current_user_can() && isset($content_struct) | 108 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), __() |
$post && get_post() && comments_open() && current_user_can() && isset($content_struct) | 108 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), __() |
!get_option() && !$post && get_post() && comments_open() && isset($content_struct) | 108 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), __() |
!$post && get_post() && comments_open() && !isset($content_struct) && !is_wp_error() | 108–111 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && !isset($content_struct) && is_wp_error() | 108–111 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) | 109–118 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && isset($content_struct) | 109–118 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && isset($content_struct) | 109–118 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), absint(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() && !is_wp_error() | 109–121 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() && is_wp_error() | 109–121 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() && !is_wp_error() | 109–121 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() && is_wp_error() | 109–121 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && !isset($content_struct) && !is_wp_error() | 109–112 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && !isset($content_struct) && is_wp_error() | 109–112 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() | 110–119 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() | 110–119 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), apply_filters(), __() |
!$post && get_post() && comments_open() && !get_option() && isset($content_struct) && !is_wp_error() | 110–122 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && !get_option() && isset($content_struct) && is_wp_error() | 110–122 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() && !is_wp_error() | 110–122 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() && is_wp_error() | 110–122 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() && !is_wp_error() | 110–122 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() && is_wp_error() | 110–122 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!get_option() && !$post && get_post() && comments_open() && !isset($content_struct) && !is_wp_error() | 110–122 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!get_option() && !$post && get_post() && comments_open() && !isset($content_struct) && is_wp_error() | 110–122 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && !isset($content_struct) && !is_wp_error() | 110–113 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) | 110 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), __() |
!$post && get_post() && comments_open() && get_option() && is_email() && isset($content_struct) | 111–120 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() | 111–120 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() | 111–120 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), apply_filters(), __() |
!$post && get_post() && comments_open() && !isset($content_struct) && is_email() | 111–120 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() && !is_wp_error() | 111–123 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() && !is_wp_error() | 111–123 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && !get_option() && isset($content_struct) && !is_wp_error() | 111–123 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && !get_option() && isset($content_struct) && is_wp_error() | 111–123 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && isset($content_struct) | 111 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), __() |
$post && get_post() && comments_open() && !isset($content_struct) && !is_wp_error() | 111–114 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) | 111 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), __() |
$post && get_post() && comments_open() && get_option() && is_email() && isset($content_struct) | 112–121 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), __() |
!$post && get_post() && comments_open() && !get_option() && isset($content_struct) && !is_wp_error() | 112–124 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && !post_password_required() && !get_option() && isset($content_struct) | 112–121 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() && !is_wp_error() | 112–124 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() && !is_wp_error() | 112–124 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!get_option() && !$post && get_post() && comments_open() && !isset($content_struct) && !is_wp_error() | 112–124 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && current_user_can() && isset($content_struct) | 112 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), __() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && isset($content_struct) | 112 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), __() |
$post && get_post() && comments_open() && !get_option() && isset($content_struct) && !is_wp_error() | 113–125 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && !post_password_required() && !get_option() && isset($content_struct) | 113–122 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), __() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && !get_option() && !is_wp_error() | 113–125 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && !get_option() && is_wp_error() | 113–125 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && current_user_can() && isset($content_struct) | 113 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && isset($content_struct) | 113 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && isset($content_struct) | 113 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 113–116 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_wp_error() | 113–116 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 113–116 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_wp_error() | 113–116 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && get_option() && is_email() | 114–123 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), is_email(), apply_filters(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() | 114–117 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() && !is_wp_error() | 114–126 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() && is_wp_error() | 114–126 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && !get_option() && !is_wp_error() | 114–126 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && !get_option() && is_wp_error() | 114–126 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && isset($content_struct) && !is_wp_error() | 114–117 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && isset($content_struct) && is_wp_error() | 114–117 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 114–117 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_wp_error() | 114–117 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 114–117 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_wp_error() | 114–117 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!get_option() && !$post && get_post() && comments_open() && !isset($content_struct) && !is_wp_error() | 114–117 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!get_option() && !$post && get_post() && comments_open() && !isset($content_struct) && is_wp_error() | 114–117 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() | 115–124 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), __() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && get_option() && is_email() | 115–124 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), is_email(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) && !is_wp_error() | 115–127 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) && is_wp_error() | 115–127 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) && !is_wp_error() | 115–127 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) && is_wp_error() | 115–127 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && !get_option() && !is_wp_error() | 115–127 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() && !is_wp_error() | 115–127 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() && is_wp_error() | 115–127 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 115–127 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_wp_error() | 115–127 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 115–127 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_wp_error() | 115–127 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 115–118 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 115–118 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && isset($content_struct) && !is_wp_error() | 115–118 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && isset($content_struct) && is_wp_error() | 115–118 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) | 116–125 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) | 116–125 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() | 116–125 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_email() | 116–125 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_email() | 116–125 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() && !is_wp_error() | 116–128 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) && !is_wp_error() | 116–128 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) && is_wp_error() | 116–128 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) && !is_wp_error() | 116–128 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) && is_wp_error() | 116–128 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && !get_option() && !is_wp_error() | 116–128 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!get_option() && !$post && get_post() && comments_open() && isset($content_struct) && !is_wp_error() | 116–128 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!get_option() && !$post && get_post() && comments_open() && isset($content_struct) && is_wp_error() | 116–128 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && isset($content_struct) && !is_wp_error() | 116–119 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && !post_password_required() && isset($content_struct) | 116 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 116–119 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 116–119 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!get_option() && !$post && get_post() && comments_open() && !isset($content_struct) && !is_wp_error() | 116–119 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) | 117–126 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), __() |
$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) | 117–126 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), __() |
!$post && get_post() && comments_open() && is_email() && isset($content_struct) | 117–126 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), __() |
!$post && get_post() && comments_open() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 117–129 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && !isset($content_struct) && get_option() && is_email() && is_wp_error() | 117–129 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) && !is_wp_error() | 117–129 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) && !is_wp_error() | 117–129 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !get_option() && !is_wp_error() | 117–129 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 117–129 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 117–129 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && isset($content_struct) && !is_wp_error() | 117–120 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && !post_password_required() && isset($content_struct) | 117 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), __() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && !is_wp_error() | 117–120 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && is_wp_error() | 117–120 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 118–130 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && !isset($content_struct) && get_option() && is_email() && is_wp_error() | 118–130 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) && !is_wp_error() | 118–130 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) && !is_wp_error() | 118–130 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!get_option() && !$post && get_post() && comments_open() && isset($content_struct) && !is_wp_error() | 118–130 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && !get_option() && !is_wp_error() | 118–130 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && !get_option() && is_wp_error() | 118–130 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 118–121 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_wp_error() | 118–121 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && !is_wp_error() | 118–121 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && is_wp_error() | 118–121 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 119–131 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && get_option() && is_email() | 119–128 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), __() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !get_option() && isset($content_struct) && !is_wp_error() | 119–131 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !get_option() && isset($content_struct) && is_wp_error() | 119–131 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && !get_option() && !is_wp_error() | 119–131 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && !get_option() && is_wp_error() | 119–131 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && !is_wp_error() | 119–122 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && is_wp_error() | 119–122 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && !is_wp_error() | 119–122 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && is_wp_error() | 119–122 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && !is_wp_error() | 119–122 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 119–122 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_wp_error() | 119–122 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 119–122 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_wp_error() | 119–122 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 119–122 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_wp_error() | 119–122 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && get_option() && is_email() && isset($content_struct) | 120–129 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), __() |
$post && get_post() && comments_open() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 120–132 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && get_option() && is_email() | 120–129 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) && !is_wp_error() | 120–132 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) && is_wp_error() | 120–132 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && !get_option() && !is_wp_error() | 120–132 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !get_option() && isset($content_struct) && !is_wp_error() | 120–132 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !get_option() && isset($content_struct) && is_wp_error() | 120–132 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 120–126 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_wp_error() | 120–126 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 120–123 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && !is_wp_error() | 120–123 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && is_wp_error() | 120–123 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && !is_wp_error() | 120–123 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && is_wp_error() | 120–123 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && !is_wp_error() | 120–123 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!get_option() && !$post && get_post() && comments_open() && isset($content_struct) && !is_wp_error() | 120–123 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!get_option() && !$post && get_post() && comments_open() && isset($content_struct) && is_wp_error() | 120–123 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) | 121–130 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), __() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && get_option() && is_email() && isset($content_struct) | 121–130 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_email() | 121–124 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), __() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !get_option() && isset($content_struct) && !is_wp_error() | 121–133 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) && !is_wp_error() | 121–133 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) && is_wp_error() | 121–133 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && !get_option() && !is_wp_error() | 121–133 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && !is_wp_error() | 121–133 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && is_wp_error() | 121–133 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && !is_wp_error() | 121–133 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && is_wp_error() | 121–133 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && !is_wp_error() | 121–124 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && !is_wp_error() | 121–124 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 121–124 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 121–124 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 121–124 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) | 122–131 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && is_email() && isset($content_struct) | 122–131 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && is_email() && isset($content_struct) | 122–131 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 122–134 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() && is_wp_error() | 122–134 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 122–134 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() && is_wp_error() | 122–134 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) && !is_wp_error() | 122–134 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !get_option() && isset($content_struct) && !is_wp_error() | 122–134 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && !is_wp_error() | 122–128 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && !is_wp_error() | 122–125 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && !is_wp_error() | 122–125 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!get_option() && !$post && get_post() && comments_open() && isset($content_struct) && !is_wp_error() | 122–125 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && !is_wp_error() | 122–125 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && is_wp_error() | 122–125 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 123–135 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && get_option() && is_email() && isset($content_struct) && is_wp_error() | 123–135 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 123–135 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() && is_wp_error() | 123–135 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 123–135 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() && is_wp_error() | 123–135 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && !isset($content_struct) && is_email() && !is_wp_error() | 123–135 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && !isset($content_struct) && is_email() && is_wp_error() | 123–135 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && current_user_can() && !get_option() && isset($content_struct) && !is_wp_error() | 123–135 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && !is_wp_error() | 123–135 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && !is_wp_error() | 123–135 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && isset($content_struct) && !is_wp_error() | 123–126 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && isset($content_struct) && is_wp_error() | 123–126 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && !is_wp_error() | 123–126 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && is_wp_error() | 123–126 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 124–136 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 124–136 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 124–136 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && get_option() && is_email() && isset($content_struct) && is_wp_error() | 124–136 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && !post_password_required() && !get_option() && isset($content_struct) && !is_wp_error() | 124–136 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && !post_password_required() && !get_option() && isset($content_struct) && is_wp_error() | 124–136 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && !is_wp_error() | 124–127 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && is_wp_error() | 124–127 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && !is_wp_error() | 124–127 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && isset($content_struct) && !is_wp_error() | 124–127 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && isset($content_struct) && is_wp_error() | 124–127 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 125–137 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && !post_password_required() && get_option() && is_email() && isset($content_struct) | 125–134 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 125–137 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 125–137 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && !isset($content_struct) && is_email() && !is_wp_error() | 125–137 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && !post_password_required() && !get_option() && isset($content_struct) && !is_wp_error() | 125–137 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && !post_password_required() && !get_option() && isset($content_struct) && is_wp_error() | 125–137 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && isset($content_struct) && !is_wp_error() | 125–128 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && !is_wp_error() | 125–128 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && is_wp_error() | 125–128 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && !is_wp_error() | 125–128 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && !is_wp_error() | 125–128 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && is_wp_error() | 125–128 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && !is_wp_error() | 125–128 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && is_wp_error() | 125–128 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 126–138 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && !post_password_required() && get_option() && is_email() && isset($content_struct) | 126–135 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), __() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 126–138 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && get_option() && is_email() && is_wp_error() | 126–138 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && !post_password_required() && !get_option() && isset($content_struct) && !is_wp_error() | 126–138 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !is_wp_error() | 126–132 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && is_wp_error() | 126–132 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && !is_wp_error() | 126–129 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && isset($content_struct) && !is_wp_error() | 126–129 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && current_user_can() && is_email() | 127 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 127–139 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() && is_wp_error() | 127–139 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 127–139 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && get_option() && is_email() && is_wp_error() | 127–139 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && !post_password_required() && !get_option() && isset($content_struct) && !is_wp_error() | 127–139 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && !is_wp_error() | 127–130 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && !is_wp_error() | 127–130 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && isset($content_struct) && !is_wp_error() | 127–130 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 128–140 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) && is_wp_error() | 128–140 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 128–140 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) && is_wp_error() | 128–140 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 128–140 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 128–140 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() && is_wp_error() | 128–140 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_email() && !is_wp_error() | 128–140 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_email() && is_wp_error() | 128–140 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_email() && !is_wp_error() | 128–140 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_email() && is_wp_error() | 128–140 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!get_option() && !$post && get_post() && comments_open() && current_user_can() && !is_wp_error() | 128–134 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && !post_password_required() && isset($content_struct) && !is_wp_error() | 128–131 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && !post_password_required() && isset($content_struct) && is_wp_error() | 128–131 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 129–141 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 129–141 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) && is_wp_error() | 129–141 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 129–141 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) && is_wp_error() | 129–141 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 129–141 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && is_email() && isset($content_struct) && !is_wp_error() | 129–141 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && is_email() && isset($content_struct) && is_wp_error() | 129–141 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && !post_password_required() && isset($content_struct) && !is_wp_error() | 129–132 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && !post_password_required() && isset($content_struct) && is_wp_error() | 129–132 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 130–142 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 130–142 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 130–142 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_email() && !is_wp_error() | 130–142 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_email() && !is_wp_error() | 130–142 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && !post_password_required() && isset($content_struct) && !is_wp_error() | 130–133 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 131–143 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 131–143 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && is_email() && isset($content_struct) && !is_wp_error() | 131–143 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 131–143 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && get_option() && is_email() && is_wp_error() | 131–143 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && !post_password_required() && isset($content_struct) && !is_wp_error() | 131–134 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), ->escape(), ->escape(), ->escape(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 132–144 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && get_option() && is_email() && isset($content_struct) && is_wp_error() | 132–144 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 132–144 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && get_option() && is_email() && is_wp_error() | 132–144 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 133–145 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) && is_wp_error() | 133–145 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 133–145 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 133–145 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && get_option() && is_email() && isset($content_struct) && is_wp_error() | 133–145 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_email() && !is_wp_error() | 133–139 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_email() && is_wp_error() | 133–139 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 134–146 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 134–146 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) && is_wp_error() | 134–146 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && !post_password_required() && !isset($content_struct) && get_option() && is_email() && !is_wp_error() | 134–146 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && current_user_can() && is_email() && isset($content_struct) && !is_wp_error() | 134–146 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && is_email() && isset($content_struct) && is_wp_error() | 134–146 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && is_email() && isset($content_struct) && !is_wp_error() | 134–146 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && is_email() && isset($content_struct) && is_wp_error() | 134–146 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 135–147 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && !current_user_can() && !post_password_required() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 135–147 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && current_user_can() && !isset($content_struct) && is_email() && !is_wp_error() | 135–141 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
$post && get_post() && comments_open() && current_user_can() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 136–148 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && current_user_can() && is_email() && isset($content_struct) && !is_wp_error() | 136–148 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && current_user_can() && is_email() && isset($content_struct) && !is_wp_error() | 136–148 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && !post_password_required() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 137–149 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && !post_password_required() && get_option() && is_email() && isset($content_struct) && is_wp_error() | 137–149 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && !post_password_required() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 138–150 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
$post && get_post() && comments_open() && !post_password_required() && get_option() && is_email() && isset($content_struct) && is_wp_error() | 138–150 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
!$post && get_post() && comments_open() && !post_password_required() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 139–151 | ->escape(), apply_filters(), ->login(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && current_user_can() && is_email() && !is_wp_error() | 139–142 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), do_action() |
!$post && get_post() && comments_open() && current_user_can() && is_email() && is_wp_error() | 139–142 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), ->get_error_message() |
$post && get_post() && comments_open() && !post_password_required() && get_option() && is_email() && isset($content_struct) && !is_wp_error() | 140–152 | ->escape(), apply_filters(), ->login(), absint(), get_post(), comments_open(), get_post_status(), current_user_can(), post_password_required(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), wp_new_comment(), is_wp_error(), __() |
!$post && get_post() && comments_open() && current_user_can() && is_email() && !is_wp_error() | 141–144 | ->escape(), apply_filters(), ->login(), get_option(), url_to_postid(), get_post(), comments_open(), get_post_status(), current_user_can(), get_post_status(), current_user_can(), get_option(), is_email(), absint(), apply_filters(), do_action(), 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 | 272 | 23–151 | 26 | 1 fewer instruction than PHP 8.5 |
| 8.5 | 273 | 23–152 | 26 | |
| 8.4 | 273 | 23–152 | 26 | 4 fewer instructions than PHP 8.3 |
| 8.3 | 277 | 23–156 | 26 | |
| 8.2 | 277 | 23–156 | 26 | |
| 8.1 | 277 | 23–156 | 26 | |
| 7.4 | 277 | 23–156 | 26 |
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 · 4
4 hooks fire while wp_xmlrpc_server::wp_newComment() runs, in this order:
- apply_filters( xmlrpc_allow_anonymous_comments )filterline 3928 (+16 into the body)
Filters whether to allow anonymous comments over XML-RPC.
- apply_filters( allow_empty_comment )filterline 4020 (+108 into the body)
Filters whether an empty comment should be allowed.
- do_action( xmlrpc_call )actionline 4027 (+115 into the body)
Fires after the XML-RPC user has been authenticated but before the rest of the method logic begins.
- do_action( xmlrpc_call_success_wp_newComment )actionline 4046 (+134 into the body)
Fires after a new comment has been successfully created via XML-RPC.
Uses · 17
- apply_filters()Calls the callback functions that have been added to a filter hook.
- get_option()Retrieves an option value based on an option name.
- __()Retrieves the translation of $text.
- absint()Converts a value to non-negative integer.
- url_to_postid()Examines a URL and try to determine the post ID it represents.
- get_post()Retrieves post data given a post ID or post object.
- comments_open()Determines whether the current post is open for comments.
- get_post_status()Retrieves the post status based on the post ID.
- current_user_can()Returns whether the current user has the specified capability.
- post_password_required()Determines whether the post requires password and whether a correct password has been provided.
- is_email()Verifies that an email is valid.
- do_action()Calls the callback functions that have been added to an action hook.
Show all 17
- wp_new_comment()Adds a new comment to the database.
- is_wp_error()Checks whether the given variable is a WordPress Error.
- wp_xmlrpc_server::escape()Escapes string or array of strings for database.
- wp_xmlrpc_server::login()Logs user in.
- IXR_Error::__construct()PHP5 constructor.
Source code
public function wp_newComment( $args ) { $this->escape( $args ); $username = $args[1]; $password = $args[2]; $post = $args[3]; $content_struct = $args[4]; /** * Filters whether to allow anonymous comments over XML-RPC. * * @since 2.7.0 * * @param bool $allow Whether to allow anonymous commenting via XML-RPC. * Default false. */ $allow_anon = apply_filters( 'xmlrpc_allow_anonymous_comments', false ); $user = $this->login( $username, $password ); if ( ! $user ) { $logged_in = false; if ( $allow_anon && get_option( 'comment_registration' ) ) { return new IXR_Error( 403, __( 'Sorry, you must be logged in to comment.' ) ); } elseif ( ! $allow_anon ) { return $this->error; } } else { $logged_in = true; } if ( is_numeric( $post ) ) { $post_id = absint( $post ); } else { $post_id = url_to_postid( $post ); } if ( ! $post_id ) { return new IXR_Error( 404, __( 'Invalid post ID.' ) ); } if ( ! get_post( $post_id ) ) { return new IXR_Error( 404, __( 'Invalid post ID.' ) ); } if ( ! comments_open( $post_id ) ) { return new IXR_Error( 403, __( 'Sorry, comments are closed for this item.' ) ); } if ( 'publish' === get_post_status( $post_id ) && ! current_user_can( 'edit_post', $post_id ) && post_password_required( $post_id ) ) { return new IXR_Error( 403, __( 'Sorry, you are not allowed to comment on this post.' ) ); } if ( 'private' === get_post_status( $post_id ) && ! current_user_can( 'read_post', $post_id ) ) { return new IXR_Error( 403, __( 'Sorry, you are not allowed to comment on this post.' ) ); } $comment = array( 'comment_post_ID' => $post_id, 'comment_content' => trim( $content_struct['content'] ), ); if ( $logged_in ) { $display_name = $user->display_name; $user_email = $user->user_email; $user_url = $user->user_url; $comment['comment_author'] = $this->escape( $display_name ); $comment['comment_author_email'] = $this->escape( $user_email ); $comment['comment_author_url'] = $this->escape( $user_url ); $comment['user_id'] = $user->ID; } else { $comment['comment_author'] = '';Changelog
Introduced in 2.7.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 7.0.4 tag, from
src/wp-includes/class-wp-xmlrpc-server.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.