[ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Comment template functions 4 * 5 * These functions are meant to live inside of the WordPress loop. 6 * 7 * @package WordPress 8 * @subpackage Template 9 */ 10 11 /** 12 * Retrieves the author of the current comment. 13 * 14 * If the comment has an empty comment_author field, then 'Anonymous' person is 15 * assumed. 16 * 17 * @since 1.5.0 18 * @since 4.4.0 Added the ability for `$comment_id` to also accept a WP_Comment object. 19 * 20 * @param int|WP_Comment $comment_id Optional. WP_Comment or the ID of the comment for which to retrieve the author. 21 * Default current comment. 22 * @return string The comment author 23 */ 24 function get_comment_author( $comment_id = 0 ) { 25 $comment = get_comment( $comment_id ); 26 27 if ( ! empty( $comment->comment_ID ) ) { 28 $comment_id = $comment->comment_ID; 29 } elseif ( is_scalar( $comment_id ) ) { 30 $comment_id = (string) $comment_id; 31 } else { 32 $comment_id = '0'; 33 } 34 35 if ( empty( $comment->comment_author ) ) { 36 $user = ! empty( $comment->user_id ) ? get_userdata( $comment->user_id ) : false; 37 if ( $user ) { 38 $comment_author = $user->display_name; 39 } else { 40 $comment_author = __( 'Anonymous' ); 41 } 42 } else { 43 $comment_author = $comment->comment_author; 44 } 45 46 /** 47 * Filters the returned comment author name. 48 * 49 * @since 1.5.0 50 * @since 4.1.0 The `$comment_id` and `$comment` parameters were added. 51 * 52 * @param string $comment_author The comment author's username. 53 * @param string $comment_id The comment ID as a numeric string. 54 * @param WP_Comment $comment The comment object. 55 */ 56 return apply_filters( 'get_comment_author', $comment_author, $comment_id, $comment ); 57 } 58 59 /** 60 * Displays the author of the current comment. 61 * 62 * @since 0.71 63 * @since 4.4.0 Added the ability for `$comment_id` to also accept a WP_Comment object. 64 * 65 * @param int|WP_Comment $comment_id Optional. WP_Comment or the ID of the comment for which to print the author. 66 * Default current comment. 67 */ 68 function comment_author( $comment_id = 0 ) { 69 $comment = get_comment( $comment_id ); 70 71 $comment_author = get_comment_author( $comment ); 72 73 /** 74 * Filters the comment author's name for display. 75 * 76 * @since 1.2.0 77 * @since 4.1.0 The `$comment_id` parameter was added. 78 * 79 * @param string $comment_author The comment author's username. 80 * @param string $comment_id The comment ID as a numeric string. 81 */ 82 echo apply_filters( 'comment_author', $comment_author, $comment->comment_ID ); 83 } 84 85 /** 86 * Retrieves the email of the author of the current comment. 87 * 88 * @since 1.5.0 89 * @since 4.4.0 Added the ability for `$comment_id` to also accept a WP_Comment object. 90 * 91 * @param int|WP_Comment $comment_id Optional. WP_Comment or the ID of the comment for which to get the author's email. 92 * Default current comment. 93 * @return string The current comment author's email 94 */ 95 function get_comment_author_email( $comment_id = 0 ) { 96 $comment = get_comment( $comment_id ); 97 98 /** 99 * Filters the comment author's returned email address. 100 * 101 * @since 1.5.0 102 * @since 4.1.0 The `$comment_id` and `$comment` parameters were added. 103 * 104 * @param string $comment_author_email The comment author's email address. 105 * @param string $comment_id The comment ID as a numeric string. 106 * @param WP_Comment $comment The comment object. 107 */ 108 return apply_filters( 'get_comment_author_email', $comment->comment_author_email, $comment->comment_ID, $comment ); 109 } 110 111 /** 112 * Displays the email of the author of the current global $comment. 113 * 114 * Care should be taken to protect the email address and assure that email 115 * harvesters do not capture your commenter's email address. Most assume that 116 * their email address will not appear in raw form on the site. Doing so will 117 * enable anyone, including those that people don't want to get the email 118 * address and use it for their own means good and bad. 119 * 120 * @since 0.71 121 * @since 4.4.0 Added the ability for `$comment_id` to also accept a WP_Comment object. 122 * 123 * @param int|WP_Comment $comment_id Optional. WP_Comment or the ID of the comment for which to print the author's email. 124 * Default current comment. 125 */ 126 function comment_author_email( $comment_id = 0 ) { 127 $comment = get_comment( $comment_id ); 128 129 $comment_author_email = get_comment_author_email( $comment ); 130 131 /** 132 * Filters the comment author's email for display. 133 * 134 * @since 1.2.0 135 * @since 4.1.0 The `$comment_id` parameter was added. 136 * 137 * @param string $comment_author_email The comment author's email address. 138 * @param string $comment_id The comment ID as a numeric string. 139 */ 140 echo apply_filters( 'author_email', $comment_author_email, $comment->comment_ID ); 141 } 142 143 /** 144 * Displays the HTML email link to the author of the current comment. 145 * 146 * Care should be taken to protect the email address and assure that email 147 * harvesters do not capture your commenter's email address. Most assume that 148 * their email address will not appear in raw form on the site. Doing so will 149 * enable anyone, including those that people don't want to get the email 150 * address and use it for their own means good and bad. 151 * 152 * @since 0.71 153 * @since 4.6.0 Added the `$comment` parameter. 154 * 155 * @param string $link_text Optional. Text to display instead of the comment author's email address. 156 * Default empty. 157 * @param string $before Optional. Text or HTML to display before the email link. Default empty. 158 * @param string $after Optional. Text or HTML to display after the email link. Default empty. 159 * @param int|WP_Comment $comment Optional. Comment ID or WP_Comment object. Default is the current comment. 160 */ 161 function comment_author_email_link( $link_text = '', $before = '', $after = '', $comment = null ) { 162 $link = get_comment_author_email_link( $link_text, $before, $after, $comment ); 163 if ( $link ) { 164 echo $link; 165 } 166 } 167 168 /** 169 * Returns the HTML email link to the author of the current comment. 170 * 171 * Care should be taken to protect the email address and assure that email 172 * harvesters do not capture your commenter's email address. Most assume that 173 * their email address will not appear in raw form on the site. Doing so will 174 * enable anyone, including those that people don't want to get the email 175 * address and use it for their own means good and bad. 176 * 177 * @since 2.7.0 178 * @since 4.6.0 Added the `$comment` parameter. 179 * 180 * @param string $link_text Optional. Text to display instead of the comment author's email address. 181 * Default empty. 182 * @param string $before Optional. Text or HTML to display before the email link. Default empty. 183 * @param string $after Optional. Text or HTML to display after the email link. Default empty. 184 * @param int|WP_Comment $comment Optional. Comment ID or WP_Comment object. Default is the current comment. 185 * @return string HTML markup for the comment author email link. By default, the email address is obfuscated 186 * via the {@see 'comment_email'} filter with antispambot(). 187 */ 188 function get_comment_author_email_link( $link_text = '', $before = '', $after = '', $comment = null ) { 189 $comment = get_comment( $comment ); 190 191 /** 192 * Filters the comment author's email for display. 193 * 194 * Care should be taken to protect the email address and assure that email 195 * harvesters do not capture your commenter's email address. 196 * 197 * @since 1.2.0 198 * @since 4.1.0 The `$comment` parameter was added. 199 * 200 * @param string $comment_author_email The comment author's email address. 201 * @param WP_Comment $comment The comment object. 202 */ 203 $comment_author_email = apply_filters( 'comment_email', $comment->comment_author_email, $comment ); 204 205 if ( ( ! empty( $comment_author_email ) ) && ( '@' !== $comment_author_email ) ) { 206 $display = ( '' !== $link_text ) ? $link_text : $comment_author_email; 207 208 $comment_author_email_link = $before . sprintf( 209 '<a href="%1$s">%2$s</a>', 210 esc_url( 'mailto:' . $comment_author_email ), 211 esc_html( $display ) 212 ) . $after; 213 214 return $comment_author_email_link; 215 } else { 216 return ''; 217 } 218 } 219 220 /** 221 * Retrieves the HTML link to the URL of the author of the current comment. 222 * 223 * Both get_comment_author_url() and get_comment_author() rely on get_comment(), 224 * which falls back to the global comment variable if the $comment_id argument is empty. 225 * 226 * @since 1.5.0 227 * @since 4.4.0 Added the ability for `$comment_id` to also accept a WP_Comment object. 228 * 229 * @param int|WP_Comment $comment_id Optional. WP_Comment or the ID of the comment for which to get the author's link. 230 * Default current comment. 231 * @return string The comment author name or HTML link for author's URL. 232 */ 233 function get_comment_author_link( $comment_id = 0 ) { 234 $comment = get_comment( $comment_id ); 235 236 if ( ! empty( $comment->comment_ID ) ) { 237 $comment_id = $comment->comment_ID; 238 } elseif ( is_scalar( $comment_id ) ) { 239 $comment_id = (string) $comment_id; 240 } else { 241 $comment_id = '0'; 242 } 243 244 $comment_author_url = get_comment_author_url( $comment ); 245 $comment_author = get_comment_author( $comment ); 246 247 if ( empty( $comment_author_url ) || 'http://' === $comment_author_url ) { 248 $comment_author_link = $comment_author; 249 } else { 250 $rel_parts = array( 'ugc' ); 251 if ( ! wp_is_internal_link( $comment_author_url ) ) { 252 $rel_parts = array_merge( 253 $rel_parts, 254 array( 'external', 'nofollow' ) 255 ); 256 } 257 258 /** 259 * Filters the rel attributes of the comment author's link. 260 * 261 * @since 6.2.0 262 * 263 * @param string[] $rel_parts An array of strings representing the rel tags 264 * which will be joined into the anchor's rel attribute. 265 * @param WP_Comment $comment The comment object. 266 */ 267 $rel_parts = apply_filters( 'comment_author_link_rel', $rel_parts, $comment ); 268 269 $rel = implode( ' ', $rel_parts ); 270 $rel = esc_attr( $rel ); 271 // Empty space before 'rel' is necessary for later sprintf(). 272 $rel = ! empty( $rel ) ? sprintf( ' rel="%s"', $rel ) : ''; 273 274 $comment_author_link = sprintf( 275 '<a href="%1$s" class="url"%2$s>%3$s</a>', 276 $comment_author_url, 277 $rel, 278 $comment_author 279 ); 280 } 281 282 /** 283 * Filters the comment author's link for display. 284 * 285 * @since 1.5.0 286 * @since 4.1.0 The `$comment_author` and `$comment_id` parameters were added. 287 * 288 * @param string $comment_author_link The HTML-formatted comment author link. 289 * Empty for an invalid URL. 290 * @param string $comment_author The comment author's username. 291 * @param string $comment_id The comment ID as a numeric string. 292 */ 293 return apply_filters( 'get_comment_author_link', $comment_author_link, $comment_author, $comment_id ); 294 } 295 296 /** 297 * Displays the HTML link to the URL of the author of the current comment. 298 * 299 * @since 0.71 300 * @since 4.4.0 Added the ability for `$comment_id` to also accept a WP_Comment object. 301 * 302 * @param int|WP_Comment $comment_id Optional. WP_Comment or the ID of the comment for which to print the author's link. 303 * Default current comment. 304 */ 305 function comment_author_link( $comment_id = 0 ) { 306 echo get_comment_author_link( $comment_id ); 307 } 308 309 /** 310 * Retrieves the IP address of the author of the current comment. 311 * 312 * @since 1.5.0 313 * @since 4.4.0 Added the ability for `$comment_id` to also accept a WP_Comment object. 314 * 315 * @param int|WP_Comment $comment_id Optional. WP_Comment or the ID of the comment for which to get the author's IP address. 316 * Default current comment. 317 * @return string Comment author's IP address, or an empty string if it's not available. 318 */ 319 function get_comment_author_IP( $comment_id = 0 ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid 320 $comment = get_comment( $comment_id ); 321 322 /** 323 * Filters the comment author's returned IP address. 324 * 325 * @since 1.5.0 326 * @since 4.1.0 The `$comment_id` and `$comment` parameters were added. 327 * 328 * @param string $comment_author_ip The comment author's IP address, or an empty string if it's not available. 329 * @param string $comment_id The comment ID as a numeric string. 330 * @param WP_Comment $comment The comment object. 331 */ 332 return apply_filters( 'get_comment_author_IP', $comment->comment_author_IP, $comment->comment_ID, $comment ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase 333 } 334 335 /** 336 * Displays the IP address of the author of the current comment. 337 * 338 * @since 0.71 339 * @since 4.4.0 Added the ability for `$comment_id` to also accept a WP_Comment object. 340 * 341 * @param int|WP_Comment $comment_id Optional. WP_Comment or the ID of the comment for which to print the author's IP address. 342 * Default current comment. 343 */ 344 function comment_author_IP( $comment_id = 0 ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid 345 echo esc_html( get_comment_author_IP( $comment_id ) ); 346 } 347 348 /** 349 * Retrieves the URL of the author of the current comment, not linked. 350 * 351 * @since 1.5.0 352 * @since 4.4.0 Added the ability for `$comment_id` to also accept a WP_Comment object. 353 * 354 * @param int|WP_Comment $comment_id Optional. WP_Comment or the ID of the comment for which to get the author's URL. 355 * Default current comment. 356 * @return string Comment author URL, if provided, an empty string otherwise. 357 */ 358 function get_comment_author_url( $comment_id = 0 ) { 359 $comment = get_comment( $comment_id ); 360 361 $comment_author_url = ''; 362 $comment_id = 0; 363 364 if ( ! empty( $comment ) ) { 365 $comment_author_url = ( 'http://' === $comment->comment_author_url ) ? '' : $comment->comment_author_url; 366 $comment_author_url = esc_url( $comment_author_url, array( 'http', 'https' ) ); 367 368 $comment_id = $comment->comment_ID; 369 } 370 371 /** 372 * Filters the comment author's URL. 373 * 374 * @since 1.5.0 375 * @since 4.1.0 The `$comment_id` and `$comment` parameters were added. 376 * 377 * @param string $comment_author_url The comment author's URL, or an empty string. 378 * @param string|int $comment_id The comment ID as a numeric string, or 0 if not found. 379 * @param WP_Comment|null $comment The comment object, or null if not found. 380 */ 381 return apply_filters( 'get_comment_author_url', $comment_author_url, $comment_id, $comment ); 382 } 383 384 /** 385 * Displays the URL of the author of the current comment, not linked. 386 * 387 * @since 0.71 388 * @since 4.4.0 Added the ability for `$comment_id` to also accept a WP_Comment object. 389 * 390 * @param int|WP_Comment $comment_id Optional. WP_Comment or the ID of the comment for which to print the author's URL. 391 * Default current comment. 392 */ 393 function comment_author_url( $comment_id = 0 ) { 394 $comment = get_comment( $comment_id ); 395 396 $comment_author_url = get_comment_author_url( $comment ); 397 398 /** 399 * Filters the comment author's URL for display. 400 * 401 * @since 1.2.0 402 * @since 4.1.0 The `$comment_id` parameter was added. 403 * 404 * @param string $comment_author_url The comment author's URL. 405 * @param string $comment_id The comment ID as a numeric string. 406 */ 407 echo apply_filters( 'comment_url', $comment_author_url, $comment->comment_ID ); 408 } 409 410 /** 411 * Retrieves the HTML link of the URL of the author of the current comment. 412 * 413 * $link_text parameter is only used if the URL does not exist for the comment 414 * author. If the URL does exist then the URL will be used and the $link_text 415 * will be ignored. 416 * 417 * Encapsulate the HTML link between the $before and $after. So it will appear 418 * in the order of $before, link, and finally $after. 419 * 420 * @since 1.5.0 421 * @since 4.6.0 Added the `$comment` parameter. 422 * 423 * @param string $link_text Optional. The text to display instead of the comment 424 * author's email address. Default empty. 425 * @param string $before Optional. The text or HTML to display before the email link. 426 * Default empty. 427 * @param string $after Optional. The text or HTML to display after the email link. 428 * Default empty. 429 * @param int|WP_Comment $comment Optional. Comment ID or WP_Comment object. 430 * Default is the current comment. 431 * @return string The HTML link between the $before and $after parameters. 432 */ 433 function get_comment_author_url_link( $link_text = '', $before = '', $after = '', $comment = 0 ) { 434 $comment_author_url = get_comment_author_url( $comment ); 435 436 $display = ( '' !== $link_text ) ? $link_text : $comment_author_url; 437 $display = str_replace( 'http://www.', '', $display ); 438 $display = str_replace( 'http://', '', $display ); 439 440 if ( str_ends_with( $display, '/' ) ) { 441 $display = substr( $display, 0, -1 ); 442 } 443 444 $comment_author_url_link = $before . sprintf( 445 '<a href="%1$s" rel="external">%2$s</a>', 446 $comment_author_url, 447 $display 448 ) . $after; 449 450 /** 451 * Filters the comment author's returned URL link. 452 * 453 * @since 1.5.0 454 * 455 * @param string $comment_author_url_link The HTML-formatted comment author URL link. 456 */ 457 return apply_filters( 'get_comment_author_url_link', $comment_author_url_link ); 458 } 459 460 /** 461 * Displays the HTML link of the URL of the author of the current comment. 462 * 463 * @since 0.71 464 * @since 4.6.0 Added the `$comment` parameter. 465 * 466 * @param string $link_text Optional. Text to display instead of the comment author's 467 * email address. Default empty. 468 * @param string $before Optional. Text or HTML to display before the email link. 469 * Default empty. 470 * @param string $after Optional. Text or HTML to display after the email link. 471 * Default empty. 472 * @param int|WP_Comment $comment Optional. Comment ID or WP_Comment object. 473 * Default is the current comment. 474 */ 475 function comment_author_url_link( $link_text = '', $before = '', $after = '', $comment = 0 ) { 476 echo get_comment_author_url_link( $link_text, $before, $after, $comment ); 477 } 478 479 /** 480 * Generates semantic classes for each comment element. 481 * 482 * @since 2.7.0 483 * @since 4.4.0 Added the ability for `$comment` to also accept a WP_Comment object. 484 * 485 * @param string|string[] $css_class Optional. One or more classes to add to the class list. 486 * Default empty. 487 * @param int|WP_Comment $comment Optional. Comment ID or WP_Comment object. Default current comment. 488 * @param int|WP_Post $post Optional. Post ID or WP_Post object. Default current post. 489 * @param bool $display Optional. Whether to print or return the output. 490 * Default true. 491 * @return void|string Void if `$display` argument is true, comment classes if `$display` is false. 492 */ 493 function comment_class( $css_class = '', $comment = null, $post = null, $display = true ) { 494 // Separates classes with a single space, collates classes for comment DIV. 495 $css_class = 'class="' . implode( ' ', get_comment_class( $css_class, $comment, $post ) ) . '"'; 496 497 if ( $display ) { 498 echo $css_class; 499 } else { 500 return $css_class; 501 } 502 } 503 504 /** 505 * Returns the classes for the comment div as an array. 506 * 507 * @since 2.7.0 508 * @since 4.4.0 Added the ability for `$comment_id` to also accept a WP_Comment object. 509 * 510 * @global int $comment_alt 511 * @global int $comment_depth 512 * @global int $comment_thread_alt 513 * 514 * @param string|string[] $css_class Optional. One or more classes to add to the class list. 515 * Default empty. 516 * @param int|WP_Comment $comment_id Optional. Comment ID or WP_Comment object. Default current comment. 517 * @param int|WP_Post $post Optional. Post ID or WP_Post object. Default current post. 518 * @return string[] An array of classes. 519 */ 520 function get_comment_class( $css_class = '', $comment_id = null, $post = null ) { 521 global $comment_alt, $comment_depth, $comment_thread_alt; 522 523 $classes = array(); 524 525 $comment = get_comment( $comment_id ); 526 if ( ! $comment ) { 527 return $classes; 528 } 529 530 // Get the comment type (comment, trackback). 531 $classes[] = ( empty( $comment->comment_type ) ) ? 'comment' : $comment->comment_type; 532 533 // Add classes for comment authors that are registered users. 534 $user = $comment->user_id ? get_userdata( $comment->user_id ) : false; 535 if ( $user ) { 536 $classes[] = 'byuser'; 537 $classes[] = 'comment-author-' . sanitize_html_class( $user->user_nicename, $comment->user_id ); 538 // For comment authors who are the author of the post. 539 $_post = get_post( $post ); 540 if ( $_post ) { 541 if ( $comment->user_id === $_post->post_author ) { 542 $classes[] = 'bypostauthor'; 543 } 544 } 545 } 546 547 if ( empty( $comment_alt ) ) { 548 $comment_alt = 0; 549 } 550 if ( empty( $comment_depth ) ) { 551 $comment_depth = 1; 552 } 553 if ( empty( $comment_thread_alt ) ) { 554 $comment_thread_alt = 0; 555 } 556 557 if ( $comment_alt % 2 ) { 558 $classes[] = 'odd'; 559 $classes[] = 'alt'; 560 } else { 561 $classes[] = 'even'; 562 } 563 564 ++$comment_alt; 565 566 // Alt for top-level comments. 567 if ( 1 === $comment_depth ) { 568 if ( $comment_thread_alt % 2 ) { 569 $classes[] = 'thread-odd'; 570 $classes[] = 'thread-alt'; 571 } else { 572 $classes[] = 'thread-even'; 573 } 574 ++$comment_thread_alt; 575 } 576 577 $classes[] = "depth-$comment_depth"; 578 579 if ( ! empty( $css_class ) ) { 580 if ( ! is_array( $css_class ) ) { 581 $css_class = preg_split( '#\s+#', $css_class ); 582 } 583 $classes = array_merge( $classes, $css_class ); 584 } 585 586 $classes = array_map( 'esc_attr', $classes ); 587 588 /** 589 * Filters the returned CSS classes for the current comment. 590 * 591 * @since 2.7.0 592 * 593 * @param string[] $classes An array of comment classes. 594 * @param string[] $css_class An array of additional classes added to the list. 595 * @param string $comment_id The comment ID as a numeric string. 596 * @param WP_Comment $comment The comment object. 597 * @param int|WP_Post $post The post ID or WP_Post object. 598 */ 599 return apply_filters( 'comment_class', $classes, $css_class, $comment->comment_ID, $comment, $post ); 600 } 601 602 /** 603 * Retrieves the comment date of the current comment. 604 * 605 * @since 1.5.0 606 * @since 4.4.0 Added the ability for `$comment_id` to also accept a WP_Comment object. 607 * 608 * @param string $format Optional. PHP date format. Defaults to the 'date_format' option. 609 * @param int|WP_Comment $comment_id Optional. WP_Comment or ID of the comment for which to get the date. 610 * Default current comment. 611 * @return string The comment's date. 612 */ 613 function get_comment_date( $format = '', $comment_id = 0 ) { 614 $comment = get_comment( $comment_id ); 615 616 $_format = ! empty( $format ) ? $format : get_option( 'date_format' ); 617 618 $comment_date = mysql2date( $_format, $comment->comment_date ); 619 620 /** 621 * Filters the returned comment date. 622 * 623 * @since 1.5.0 624 * 625 * @param string|int $comment_date Formatted date string or Unix timestamp. 626 * @param string $format PHP date format. 627 * @param WP_Comment $comment The comment object. 628 */ 629 return apply_filters( 'get_comment_date', $comment_date, $format, $comment ); 630 } 631 632 /** 633 * Displays the comment date of the current comment. 634 * 635 * @since 0.71 636 * @since 4.4.0 Added the ability for `$comment_id` to also accept a WP_Comment object. 637 * 638 * @param string $format Optional. PHP date format. Defaults to the 'date_format' option. 639 * @param int|WP_Comment $comment_id WP_Comment or ID of the comment for which to print the date. 640 * Default current comment. 641 */ 642 function comment_date( $format = '', $comment_id = 0 ) { 643 echo get_comment_date( $format, $comment_id ); 644 } 645 646 /** 647 * Retrieves the excerpt of the given comment. 648 * 649 * Returns a maximum of 20 words with an ellipsis appended if necessary. 650 * 651 * @since 1.5.0 652 * @since 4.4.0 Added the ability for `$comment_id` to also accept a WP_Comment object. 653 * 654 * @param int|WP_Comment $comment_id Optional. WP_Comment or ID of the comment for which to get the excerpt. 655 * Default current comment. 656 * @return string The possibly truncated comment excerpt. 657 */ 658 function get_comment_excerpt( $comment_id = 0 ) { 659 $comment = get_comment( $comment_id ); 660 661 if ( ! post_password_required( $comment->comment_post_ID ) ) { 662 $comment_text = strip_tags( str_replace( array( "\n", "\r" ), ' ', $comment->comment_content ) ); 663 } else { 664 $comment_text = __( 'Password protected' ); 665 } 666 667 /* translators: Maximum number of words used in a comment excerpt. */ 668 $comment_excerpt_length = (int) _x( '20', 'comment_excerpt_length' ); 669 670 /** 671 * Filters the maximum number of words used in the comment excerpt. 672 * 673 * @since 4.4.0 674 * 675 * @param int $comment_excerpt_length The amount of words you want to display in the comment excerpt. 676 */ 677 $comment_excerpt_length = apply_filters( 'comment_excerpt_length', $comment_excerpt_length ); 678 679 $comment_excerpt = wp_trim_words( $comment_text, $comment_excerpt_length, '…' ); 680 681 /** 682 * Filters the retrieved comment excerpt. 683 * 684 * @since 1.5.0 685 * @since 4.1.0 The `$comment_id` and `$comment` parameters were added. 686 * 687 * @param string $comment_excerpt The comment excerpt text. 688 * @param string $comment_id The comment ID as a numeric string. 689 * @param WP_Comment $comment The comment object. 690 */ 691 return apply_filters( 'get_comment_excerpt', $comment_excerpt, $comment->comment_ID, $comment ); 692 } 693 694 /** 695 * Displays the excerpt of the current comment. 696 * 697 * @since 1.2.0 698 * @since 4.4.0 Added the ability for `$comment_id` to also accept a WP_Comment object. 699 * 700 * @param int|WP_Comment $comment_id Optional. WP_Comment or ID of the comment for which to print the excerpt. 701 * Default current comment. 702 */ 703 function comment_excerpt( $comment_id = 0 ) { 704 $comment = get_comment( $comment_id ); 705 706 $comment_excerpt = get_comment_excerpt( $comment ); 707 708 /** 709 * Filters the comment excerpt for display. 710 * 711 * @since 1.2.0 712 * @since 4.1.0 The `$comment_id` parameter was added. 713 * 714 * @param string $comment_excerpt The comment excerpt text. 715 * @param string $comment_id The comment ID as a numeric string. 716 */ 717 echo apply_filters( 'comment_excerpt', $comment_excerpt, $comment->comment_ID ); 718 } 719 720 /** 721 * Retrieves the comment ID of the current comment. 722 * 723 * @since 1.5.0 724 * 725 * @return string The comment ID as a numeric string. 726 */ 727 function get_comment_ID() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid 728 $comment = get_comment(); 729 730 $comment_id = ! empty( $comment->comment_ID ) ? $comment->comment_ID : '0'; 731 732 /** 733 * Filters the returned comment ID. 734 * 735 * @since 1.5.0 736 * @since 4.1.0 The `$comment` parameter was added. 737 * 738 * @param string $comment_id The current comment ID as a numeric string. 739 * @param WP_Comment $comment The comment object. 740 */ 741 return apply_filters( 'get_comment_ID', $comment_id, $comment ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.NotLowercase 742 } 743 744 /** 745 * Displays the comment ID of the current comment. 746 * 747 * @since 0.71 748 */ 749 function comment_ID() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid 750 echo get_comment_ID(); 751 } 752 753 /** 754 * Retrieves the link to a given comment. 755 * 756 * @since 1.5.0 757 * @since 4.4.0 Added the ability for `$comment` to also accept a WP_Comment object. Added `$cpage` argument. 758 * 759 * @see get_page_of_comment() 760 * 761 * @global WP_Rewrite $wp_rewrite WordPress rewrite component. 762 * @global bool $in_comment_loop 763 * 764 * @param WP_Comment|int|null $comment Optional. Comment to retrieve. Default current comment. 765 * @param array $args { 766 * An array of optional arguments to override the defaults. 767 * 768 * @type string $type Passed to get_page_of_comment(). 769 * @type int $page Current page of comments, for calculating comment pagination. 770 * @type int $per_page Per-page value for comment pagination. 771 * @type int $max_depth Passed to get_page_of_comment(). 772 * @type int|string $cpage Value to use for the comment's "comment-page" or "cpage" value. 773 * If provided, this value overrides any value calculated from `$page` 774 * and `$per_page`. 775 * } 776 * @return string The permalink to the given comment. 777 */ 778 function get_comment_link( $comment = null, $args = array() ) { 779 global $wp_rewrite, $in_comment_loop; 780 781 $comment = get_comment( $comment ); 782 783 // Back-compat. 784 if ( ! is_array( $args ) ) { 785 $args = array( 'page' => $args ); 786 } 787 788 $defaults = array( 789 'type' => 'all', 790 'page' => '', 791 'per_page' => '', 792 'max_depth' => '', 793 'cpage' => null, 794 ); 795 796 $args = wp_parse_args( $args, $defaults ); 797 798 $comment_link = get_permalink( $comment->comment_post_ID ); 799 800 // The 'cpage' param takes precedence. 801 if ( ! is_null( $args['cpage'] ) ) { 802 $cpage = $args['cpage']; 803 804 // No 'cpage' is provided, so we calculate one. 805 } else { 806 if ( '' === $args['per_page'] && get_option( 'page_comments' ) ) { 807 $args['per_page'] = get_option( 'comments_per_page' ); 808 } 809 810 if ( empty( $args['per_page'] ) ) { 811 $args['per_page'] = 0; 812 $args['page'] = 0; 813 } 814 815 $cpage = $args['page']; 816 817 if ( '' === $cpage ) { 818 if ( ! empty( $in_comment_loop ) ) { 819 $cpage = (int) get_query_var( 'cpage' ); 820 } else { 821 // Requires a database hit, so we only do it when we can't figure out from context. 822 $cpage = get_page_of_comment( $comment->comment_ID, $args ); 823 } 824 } 825 826 /* 827 * If the default page displays the oldest comments, the permalinks for comments on the default page 828 * do not need a 'cpage' query var. 829 */ 830 if ( 'oldest' === get_option( 'default_comments_page' ) && 1 === $cpage ) { 831 $cpage = ''; 832 } 833 } 834 835 if ( $cpage && get_option( 'page_comments' ) ) { 836 if ( $wp_rewrite->using_permalinks() ) { 837 if ( $cpage ) { 838 $comment_link = trailingslashit( $comment_link ) . $wp_rewrite->comments_pagination_base . '-' . $cpage; 839 } 840 841 $comment_link = user_trailingslashit( $comment_link, 'comment' ); 842 } elseif ( $cpage ) { 843 $comment_link = add_query_arg( 'cpage', $cpage, $comment_link ); 844 } 845 } 846 847 if ( $wp_rewrite->using_permalinks() ) { 848 $comment_link = user_trailingslashit( $comment_link, 'comment' ); 849 } 850 851 $comment_link = $comment_link . '#comment-' . $comment->comment_ID; 852 853 /** 854 * Filters the returned single comment permalink. 855 * 856 * @since 2.8.0 857 * @since 4.4.0 Added the `$cpage` parameter. 858 * 859 * @see get_page_of_comment() 860 * 861 * @param string $comment_link The comment permalink with '#comment-$id' appended. 862 * @param WP_Comment $comment The current comment object. 863 * @param array $args An array of arguments to override the defaults. 864 * @param int $cpage The calculated 'cpage' value. 865 */ 866 return apply_filters( 'get_comment_link', $comment_link, $comment, $args, $cpage ); 867 } 868 869 /** 870 * Retrieves the link to the current post comments. 871 * 872 * @since 1.5.0 873 * 874 * @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is global $post. 875 * @return string The link to the comments. 876 */ 877 function get_comments_link( $post = 0 ) { 878 $hash = get_comments_number( $post ) ? '#comments' : '#respond'; 879 $comments_link = get_permalink( $post ) . $hash; 880 881 /** 882 * Filters the returned post comments permalink. 883 * 884 * @since 3.6.0 885 * 886 * @param string $comments_link Post comments permalink with '#comments' appended. 887 * @param int|WP_Post $post Post ID or WP_Post object. 888 */ 889 return apply_filters( 'get_comments_link', $comments_link, $post ); 890 } 891 892 /** 893 * Displays the link to the current post comments. 894 * 895 * @since 0.71 896 * 897 * @param string $deprecated Not Used. 898 * @param string $deprecated_2 Not Used. 899 */ 900 function comments_link( $deprecated = '', $deprecated_2 = '' ) { 901 if ( ! empty( $deprecated ) ) { 902 _deprecated_argument( __FUNCTION__, '0.72' ); 903 } 904 if ( ! empty( $deprecated_2 ) ) { 905 _deprecated_argument( __FUNCTION__, '1.3.0' ); 906 } 907 echo esc_url( get_comments_link() ); 908 } 909 910 /** 911 * Retrieves the amount of comments a post has. 912 * 913 * @since 1.5.0 914 * 915 * @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is the global `$post`. 916 * @return string|int If the post exists, a numeric string representing the number of comments 917 * the post has, otherwise 0. 918 */ 919 function get_comments_number( $post = 0 ) { 920 $post = get_post( $post ); 921 922 $comments_number = $post ? $post->comment_count : 0; 923 $post_id = $post ? $post->ID : 0; 924 925 /** 926 * Filters the returned comment count for a post. 927 * 928 * @since 1.5.0 929 * 930 * @param string|int $comments_number A string representing the number of comments a post has, otherwise 0. 931 * @param int $post_id Post ID. 932 */ 933 return apply_filters( 'get_comments_number', $comments_number, $post_id ); 934 } 935 936 /** 937 * Displays the language string for the number of comments the current post has. 938 * 939 * @since 0.71 940 * @since 5.4.0 The `$deprecated` parameter was changed to `$post`. 941 * 942 * @param string|false $zero Optional. Text for no comments. Default false. 943 * @param string|false $one Optional. Text for one comment. Default false. 944 * @param string|false $more Optional. Text for more than one comment. Default false. 945 * @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is the global `$post`. 946 */ 947 function comments_number( $zero = false, $one = false, $more = false, $post = 0 ) { 948 echo get_comments_number_text( $zero, $one, $more, $post ); 949 } 950 951 /** 952 * Displays the language string for the number of comments the current post has. 953 * 954 * @since 4.0.0 955 * @since 5.4.0 Added the `$post` parameter to allow using the function outside of the loop. 956 * 957 * @param string $zero Optional. Text for no comments. Default false. 958 * @param string $one Optional. Text for one comment. Default false. 959 * @param string $more Optional. Text for more than one comment. Default false. 960 * @param int|WP_Post $post Optional. Post ID or WP_Post object. Default is the global `$post`. 961 * @return string Language string for the number of comments a post has. 962 */ 963 function get_comments_number_text( $zero = false, $one = false, $more = false, $post = 0 ) { 964 $comments_number = get_comments_number( $post ); 965 966 if ( $comments_number > 1 ) { 967 if ( false === $more ) { 968 $comments_number_text = sprintf( 969 /* translators: %s: Number of comments. */ 970 _n( '%s Comment', '%s Comments', $comments_number ), 971 number_format_i18n( $comments_number ) 972 ); 973 } else { 974 // % Comments 975 /* 976 * translators: If comment number in your language requires declension, 977 * translate this to 'on'. Do not translate into your own language. 978 */ 979 if ( 'on' === _x( 'off', 'Comment number declension: on or off' ) ) { 980 $text = preg_replace( '#<span class="screen-reader-text">.+?</span>#', '', $more ); 981 $text = preg_replace( '/&.+?;/', '', $text ); // Remove HTML entities. 982 $text = trim( strip_tags( $text ), '% ' ); 983 984 // Replace '% Comments' with a proper plural form. 985 if ( $text && ! preg_match( '/[0-9]+/', $text ) && str_contains( $more, '%' ) ) { 986 /* translators: %s: Number of comments. */ 987 $new_text = _n( '%s Comment', '%s Comments', $comments_number ); 988 $new_text = trim( sprintf( $new_text, '' ) ); 989 990 $more = str_replace( $text, $new_text, $more ); 991 if ( ! str_contains( $more, '%' ) ) { 992 $more = '% ' . $more; 993 } 994 } 995 } 996 997 $comments_number_text = str_replace( '%', number_format_i18n( $comments_number ), $more ); 998 } 999 } elseif ( 0 == $comments_number ) { 1000 $comments_number_text = ( false === $zero ) ? __( 'No Comments' ) : $zero; 1001 } else { // Must be one. 1002 $comments_number_text = ( false === $one ) ? __( '1 Comment' ) : $one; 1003 } 1004 1005 /** 1006 * Filters the comments count for display. 1007 * 1008 * @since 1.5.0 1009 * 1010 * @see _n() 1011 * 1012 * @param string $comments_number_text A translatable string formatted based on whether the count 1013 * is equal to 0, 1, or 1+. 1014 * @param int $comments_number The number of post comments. 1015 */ 1016 return apply_filters( 'comments_number', $comments_number_text, $comments_number ); 1017 } 1018 1019 /** 1020 * Retrieves the text of the current comment. 1021 * 1022 * @since 1.5.0 1023 * @since 4.4.0 Added the ability for `$comment_id` to also accept a WP_Comment object. 1024 * @since 5.4.0 Added 'In reply to %s.' prefix to child comments in comments feed. 1025 * 1026 * @see Walker_Comment::comment() 1027 * 1028 * @param int|WP_Comment $comment_id Optional. WP_Comment or ID of the comment for which to get the text. 1029 * Default current comment. 1030 * @param array $args Optional. An array of arguments. Default empty array. 1031 * @return string The comment content. 1032 */ 1033 function get_comment_text( $comment_id = 0, $args = array() ) { 1034 $comment = get_comment( $comment_id ); 1035 1036 $comment_text = $comment->comment_content; 1037 1038 if ( is_comment_feed() && $comment->comment_parent ) { 1039 $parent = get_comment( $comment->comment_parent ); 1040 if ( $parent ) { 1041 $parent_link = esc_url( get_comment_link( $parent ) ); 1042 $name = get_comment_author( $parent ); 1043 1044 $comment_text = sprintf( 1045 /* translators: %s: Comment link. */ 1046 ent2ncr( __( 'In reply to %s.' ) ), 1047 '<a href="' . $parent_link . '">' . $name . '</a>' 1048 ) . "\n\n" . $comment_text; 1049 } 1050 } 1051 1052 /** 1053 * Filters the text of a comment. 1054 * 1055 * @since 1.5.0 1056 * 1057 * @see Walker_Comment::comment() 1058 * 1059 * @param string $comment_text Text of the comment. 1060 * @param WP_Comment $comment The comment object. 1061 * @param array $args An array of arguments. 1062 */ 1063 return apply_filters( 'get_comment_text', $comment_text, $comment, $args ); 1064 } 1065 1066 /** 1067 * Displays the text of the current comment. 1068 * 1069 * @since 0.71 1070 * @since 4.4.0 Added the ability for `$comment_id` to also accept a WP_Comment object. 1071 * 1072 * @see Walker_Comment::comment() 1073 * 1074 * @param int|WP_Comment $comment_id Optional. WP_Comment or ID of the comment for which to print the text. 1075 * Default current comment. 1076 * @param array $args Optional. An array of arguments. Default empty array. 1077 */ 1078 function comment_text( $comment_id = 0, $args = array() ) { 1079 $comment = get_comment( $comment_id ); 1080 1081 $comment_text = get_comment_text( $comment, $args ); 1082 1083 /** 1084 * Filters the text of a comment to be displayed. 1085 * 1086 * @since 1.2.0 1087 * 1088 * @see Walker_Comment::comment() 1089 * 1090 * @param string $comment_text Text of the comment. 1091 * @param WP_Comment|null $comment The comment object. Null if not found. 1092 * @param array $args An array of arguments. 1093 */ 1094 echo apply_filters( 'comment_text', $comment_text, $comment, $args ); 1095 } 1096 1097 /** 1098 * Retrieves the comment time of the current comment. 1099 * 1100 * @since 1.5.0 1101 * @since 6.2.0 Added the `$comment_id` parameter. 1102 * 1103 * @param string $format Optional. PHP date format. Defaults to the 'time_format' option. 1104 * @param bool $gmt Optional. Whether to use the GMT date. Default false. 1105 * @param bool $translate Optional. Whether to translate the time (for use in feeds). 1106 * Default true. 1107 * @param int|WP_Comment $comment_id Optional. WP_Comment or ID of the comment for which to get the time. 1108 * Default current comment. 1109 * @return string The formatted time. 1110 */ 1111 function get_comment_time( $format = '', $gmt = false, $translate = true, $comment_id = 0 ) { 1112 $comment = get_comment( $comment_id ); 1113 1114 if ( null === $comment ) { 1115 return ''; 1116 } 1117 1118 $comment_date = $gmt ? $comment->comment_date_gmt : $comment->comment_date; 1119 1120 $_format = ! empty( $format ) ? $format : get_option( 'time_format' ); 1121 1122 $comment_time = mysql2date( $_format, $comment_date, $translate ); 1123 1124 /** 1125 * Filters the returned comment time. 1126 * 1127 * @since 1.5.0 1128 * 1129 * @param string|int $comment_time The comment time, formatted as a date string or Unix timestamp. 1130 * @param string $format PHP date format. 1131 * @param bool $gmt Whether the GMT date is in use. 1132 * @param bool $translate Whether the time is translated. 1133 * @param WP_Comment $comment The comment object. 1134 */ 1135 return apply_filters( 'get_comment_time', $comment_time, $format, $gmt, $translate, $comment ); 1136 } 1137 1138 /** 1139 * Displays the comment time of the current comment. 1140 * 1141 * @since 0.71 1142 * @since 6.2.0 Added the `$comment_id` parameter. 1143 * 1144 * @param string $format Optional. PHP time format. Defaults to the 'time_format' option. 1145 * @param int|WP_Comment $comment_id Optional. WP_Comment or ID of the comment for which to print the time. 1146 * Default current comment. 1147 */ 1148 function comment_time( $format = '', $comment_id = 0 ) { 1149 echo get_comment_time( $format, false, true, $comment_id ); 1150 } 1151 1152 /** 1153 * Retrieves the comment type of the current comment. 1154 * 1155 * @since 1.5.0 1156 * @since 4.4.0 Added the ability for `$comment_id` to also accept a WP_Comment object. 1157 * 1158 * @param int|WP_Comment $comment_id Optional. WP_Comment or ID of the comment for which to get the type. 1159 * Default current comment. 1160 * @return string The comment type. 1161 */ 1162 function get_comment_type( $comment_id = 0 ) { 1163 $comment = get_comment( $comment_id ); 1164 1165 if ( '' === $comment->comment_type ) { 1166 $comment->comment_type = 'comment'; 1167 } 1168 1169 /** 1170 * Filters the returned comment type. 1171 * 1172 * @since 1.5.0 1173 * @since 4.1.0 The `$comment_id` and `$comment` parameters were added. 1174 * 1175 * @param string $comment_type The type of comment, such as 'comment', 'pingback', or 'trackback'. 1176 * @param string $comment_id The comment ID as a numeric string. 1177 * @param WP_Comment $comment The comment object. 1178 */ 1179 return apply_filters( 'get_comment_type', $comment->comment_type, $comment->comment_ID, $comment ); 1180 } 1181 1182 /** 1183 * Displays the comment type of the current comment. 1184 * 1185 * @since 0.71 1186 * 1187 * @param string|false $commenttxt Optional. String to display for comment type. Default false. 1188 * @param string|false $trackbacktxt Optional. String to display for trackback type. Default false. 1189 * @param string|false $pingbacktxt Optional. String to display for pingback type. Default false. 1190 */ 1191 function comment_type( $commenttxt = false, $trackbacktxt = false, $pingbacktxt = false ) { 1192 if ( false === $commenttxt ) { 1193 $commenttxt = _x( 'Comment', 'noun' ); 1194 } 1195 if ( false === $trackbacktxt ) { 1196 $trackbacktxt = __( 'Trackback' ); 1197 } 1198 if ( false === $pingbacktxt ) { 1199 $pingbacktxt = __( 'Pingback' ); 1200 } 1201 $type = get_comment_type(); 1202 switch ( $type ) { 1203 case 'trackback': 1204 echo $trackbacktxt; 1205 break; 1206 case 'pingback': 1207 echo $pingbacktxt; 1208 break; 1209 default: 1210 echo $commenttxt; 1211 } 1212 } 1213 1214 /** 1215 * Retrieves the current post's trackback URL. 1216 * 1217 * There is a check to see if permalink's have been enabled and if so, will 1218 * retrieve the pretty path. If permalinks weren't enabled, the ID of the 1219 * current post is used and appended to the correct page to go to. 1220 * 1221 * @since 1.5.0 1222 * 1223 * @return string The trackback URL after being filtered. 1224 */ 1225 function get_trackback_url() { 1226 if ( get_option( 'permalink_structure' ) ) { 1227 $trackback_url = trailingslashit( get_permalink() ) . user_trailingslashit( 'trackback', 'single_trackback' ); 1228 } else { 1229 $trackback_url = get_option( 'siteurl' ) . '/wp-trackback.php?p=' . get_the_ID(); 1230 } 1231 1232 /** 1233 * Filters the returned trackback URL. 1234 * 1235 * @since 2.2.0 1236 * 1237 * @param string $trackback_url The trackback URL. 1238 */ 1239 return apply_filters( 'trackback_url', $trackback_url ); 1240 } 1241 1242 /** 1243 * Displays the current post's trackback URL. 1244 * 1245 * @since 0.71 1246 * 1247 * @param bool $deprecated_echo Not used. 1248 * @return void|string Should only be used to echo the trackback URL, use get_trackback_url() 1249 * for the result instead. 1250 */ 1251 function trackback_url( $deprecated_echo = true ) { 1252 if ( true !== $deprecated_echo ) { 1253 _deprecated_argument( 1254 __FUNCTION__, 1255 '2.5.0', 1256 sprintf( 1257 /* translators: %s: get_trackback_url() */ 1258 __( 'Use %s instead if you do not want the value echoed.' ), 1259 '<code>get_trackback_url()</code>' 1260 ) 1261 ); 1262 } 1263 1264 if ( $deprecated_echo ) { 1265 echo get_trackback_url(); 1266 } else { 1267 return get_trackback_url(); 1268 } 1269 } 1270 1271 /** 1272 * Generates and displays the RDF for the trackback information of current post. 1273 * 1274 * Deprecated in 3.0.0, and restored in 3.0.1. 1275 * 1276 * @since 0.71 1277 * 1278 * @param int|string $deprecated Not used (Was $timezone = 0). 1279 */ 1280 function trackback_rdf( $deprecated = '' ) { 1281 if ( ! empty( $deprecated ) ) { 1282 _deprecated_argument( __FUNCTION__, '2.5.0' ); 1283 } 1284 1285 if ( isset( $_SERVER['HTTP_USER_AGENT'] ) && false !== stripos( $_SERVER['HTTP_USER_AGENT'], 'W3C_Validator' ) ) { 1286 return; 1287 } 1288 1289 echo '<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 1290 xmlns:dc="http://purl.org/dc/elements/1.1/" 1291 xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"> 1292 <rdf:Description rdf:about="'; 1293 the_permalink(); 1294 echo '"' . "\n"; 1295 echo ' dc:identifier="'; 1296 the_permalink(); 1297 echo '"' . "\n"; 1298 echo ' dc:title="' . str_replace( '--', '--', wptexturize( strip_tags( get_the_title() ) ) ) . '"' . "\n"; 1299 echo ' trackback:ping="' . get_trackback_url() . '"' . " />\n"; 1300 echo '</rdf:RDF>'; 1301 } 1302 1303 /** 1304 * Determines whether the current post is open for comments. 1305 * 1306 * For more information on this and similar theme functions, check out 1307 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1308 * Conditional Tags} article in the Theme Developer Handbook. 1309 * 1310 * @since 1.5.0 1311 * 1312 * @param int|WP_Post $post Optional. Post ID or WP_Post object. Default current post. 1313 * @return bool True if the comments are open. 1314 */ 1315 function comments_open( $post = null ) { 1316 $_post = get_post( $post ); 1317 1318 $post_id = $_post ? $_post->ID : 0; 1319 $comments_open = ( $_post && ( 'open' === $_post->comment_status ) ); 1320 1321 /** 1322 * Filters whether the current post is open for comments. 1323 * 1324 * @since 2.5.0 1325 * 1326 * @param bool $comments_open Whether the current post is open for comments. 1327 * @param int $post_id The post ID. 1328 */ 1329 return apply_filters( 'comments_open', $comments_open, $post_id ); 1330 } 1331 1332 /** 1333 * Determines whether the current post is open for pings. 1334 * 1335 * For more information on this and similar theme functions, check out 1336 * the {@link https://developer.wordpress.org/themes/basics/conditional-tags/ 1337 * Conditional Tags} article in the Theme Developer Handbook. 1338 * 1339 * @since 1.5.0 1340 * 1341 * @param int|WP_Post $post Optional. Post ID or WP_Post object. Default current post. 1342 * @return bool True if pings are accepted 1343 */ 1344 function pings_open( $post = null ) { 1345 $_post = get_post( $post ); 1346 1347 $post_id = $_post ? $_post->ID : 0; 1348 $pings_open = ( $_post && ( 'open' === $_post->ping_status ) ); 1349 1350 /** 1351 * Filters whether the current post is open for pings. 1352 * 1353 * @since 2.5.0 1354 * 1355 * @param bool $pings_open Whether the current post is open for pings. 1356 * @param int $post_id The post ID. 1357 */ 1358 return apply_filters( 'pings_open', $pings_open, $post_id ); 1359 } 1360 1361 /** 1362 * Displays form token for unfiltered comments. 1363 * 1364 * Will only display nonce token if the current user has permissions for 1365 * unfiltered html. Won't display the token for other users. 1366 * 1367 * The function was backported to 2.0.10 and was added to versions 2.1.3 and 1368 * above. Does not exist in versions prior to 2.0.10 in the 2.0 branch and in 1369 * the 2.1 branch, prior to 2.1.3. Technically added in 2.2.0. 1370 * 1371 * Backported to 2.0.10. 1372 * 1373 * @since 2.1.3 1374 */ 1375 function wp_comment_form_unfiltered_html_nonce() { 1376 $post = get_post(); 1377 $post_id = $post ? $post->ID : 0; 1378 1379 if ( current_user_can( 'unfiltered_html' ) ) { 1380 wp_nonce_field( 'unfiltered-html-comment_' . $post_id, '_wp_unfiltered_html_comment_disabled', false ); 1381 wp_print_inline_script_tag( "(function(){if(window===window.parent){document.getElementById('_wp_unfiltered_html_comment_disabled').name='_wp_unfiltered_html_comment';}})();" ); 1382 } 1383 } 1384 1385 /** 1386 * Loads the comment template specified in $file. 1387 * 1388 * Will not display the comments template if not on single post or page, or if 1389 * the post does not have comments. 1390 * 1391 * Uses the WordPress database object to query for the comments. The comments 1392 * are passed through the {@see 'comments_array'} filter hook with the list of comments 1393 * and the post ID respectively. 1394 * 1395 * The `$file` path is passed through a filter hook called {@see 'comments_template'}, 1396 * which includes the template directory and $file combined. Tries the $filtered path 1397 * first and if it fails it will require the default comment template from the 1398 * default theme. If either does not exist, then the WordPress process will be 1399 * halted. It is advised for that reason, that the default theme is not deleted. 1400 * 1401 * Will not try to get the comments if the post has none. 1402 * 1403 * @since 1.5.0 1404 * 1405 * @global WP_Query $wp_query WordPress Query object. 1406 * @global WP_Post $post Global post object. 1407 * @global wpdb $wpdb WordPress database abstraction object. 1408 * @global int $id 1409 * @global WP_Comment $comment Global comment object. 1410 * @global string $user_login 1411 * @global string $user_identity 1412 * @global bool $overridden_cpage 1413 * @global bool $withcomments 1414 * @global string $wp_stylesheet_path Path to current theme's stylesheet directory. 1415 * @global string $wp_template_path Path to current theme's template directory. 1416 * 1417 * @param string $file Optional. The file to load. Default '/comments.php'. 1418 * @param bool $separate_comments Optional. Whether to separate the comments by comment type. 1419 * Default false. 1420 */ 1421 function comments_template( $file = '/comments.php', $separate_comments = false ) { 1422 global $wp_query, $withcomments, $post, $wpdb, $id, $comment, $user_login, $user_identity, $overridden_cpage, $wp_stylesheet_path, $wp_template_path; 1423 1424 if ( ! ( is_single() || is_page() || $withcomments ) || empty( $post ) ) { 1425 return; 1426 } 1427 1428 if ( empty( $file ) ) { 1429 $file = '/comments.php'; 1430 } 1431 1432 $req = get_option( 'require_name_email' ); 1433 1434 /* 1435 * Comment author information fetched from the comment cookies. 1436 */ 1437 $commenter = wp_get_current_commenter(); 1438 1439 /* 1440 * The name of the current comment author escaped for use in attributes. 1441 * Escaped by sanitize_comment_cookies(). 1442 */ 1443 $comment_author = $commenter['comment_author']; 1444 1445 /* 1446 * The email address of the current comment author escaped for use in attributes. 1447 * Escaped by sanitize_comment_cookies(). 1448 */ 1449 $comment_author_email = $commenter['comment_author_email']; 1450 1451 /* 1452 * The URL of the current comment author escaped for use in attributes. 1453 */ 1454 $comment_author_url = esc_url( $commenter['comment_author_url'] ); 1455 1456 $comment_args = array( 1457 'orderby' => 'comment_date_gmt', 1458 'order' => 'ASC', 1459 'status' => 'approve', 1460 'post_id' => $post->ID, 1461 'no_found_rows' => false, 1462 ); 1463 1464 if ( get_option( 'thread_comments' ) ) { 1465 $comment_args['hierarchical'] = 'threaded'; 1466 } else { 1467 $comment_args['hierarchical'] = false; 1468 } 1469 1470 if ( is_user_logged_in() ) { 1471 $comment_args['include_unapproved'] = array( get_current_user_id() ); 1472 } else { 1473 $unapproved_email = wp_get_unapproved_comment_author_email(); 1474 1475 if ( $unapproved_email ) { 1476 $comment_args['include_unapproved'] = array( $unapproved_email ); 1477 } 1478 } 1479 1480 $per_page = 0; 1481 if ( get_option( 'page_comments' ) ) { 1482 $per_page = (int) get_query_var( 'comments_per_page' ); 1483 if ( 0 === $per_page ) { 1484 $per_page = (int) get_option( 'comments_per_page' ); 1485 } 1486 1487 $comment_args['number'] = $per_page; 1488 $page = (int) get_query_var( 'cpage' ); 1489 1490 if ( $page ) { 1491 $comment_args['offset'] = ( $page - 1 ) * $per_page; 1492 } elseif ( 'oldest' === get_option( 'default_comments_page' ) ) { 1493 $comment_args['offset'] = 0; 1494 } else { 1495 // If fetching the first page of 'newest', we need a top-level comment count. 1496 $top_level_query = new WP_Comment_Query(); 1497 $top_level_args = array( 1498 'count' => true, 1499 'orderby' => false, 1500 'post_id' => $post->ID, 1501 'status' => 'approve', 1502 ); 1503 1504 if ( $comment_args['hierarchical'] ) { 1505 $top_level_args['parent'] = 0; 1506 } 1507 1508 if ( isset( $comment_args['include_unapproved'] ) ) { 1509 $top_level_args['include_unapproved'] = $comment_args['include_unapproved']; 1510 } 1511 1512 /** 1513 * Filters the arguments used in the top level comments query. 1514 * 1515 * @since 5.6.0 1516 * 1517 * @see WP_Comment_Query::__construct() 1518 * 1519 * @param array $top_level_args { 1520 * The top level query arguments for the comments template. 1521 * 1522 * @type bool $count Whether to return a comment count. 1523 * @type string|array $orderby The field(s) to order by. 1524 * @type int $post_id The post ID. 1525 * @type string|array $status The comment status to limit results by. 1526 * } 1527 */ 1528 $top_level_args = apply_filters( 'comments_template_top_level_query_args', $top_level_args ); 1529 1530 $top_level_count = $top_level_query->query( $top_level_args ); 1531 1532 $comment_args['offset'] = ( (int) ceil( $top_level_count / $per_page ) - 1 ) * $per_page; 1533 } 1534 } 1535 1536 /** 1537 * Filters the arguments used to query comments in comments_template(). 1538 * 1539 * @since 4.5.0 1540 * 1541 * @see WP_Comment_Query::__construct() 1542 * 1543 * @param array $comment_args { 1544 * Array of WP_Comment_Query arguments. 1545 * 1546 * @type string|array $orderby Field(s) to order by. 1547 * @type string $order Order of results. Accepts 'ASC' or 'DESC'. 1548 * @type string $status Comment status. 1549 * @type array $include_unapproved Array of IDs or email addresses whose unapproved comments 1550 * will be included in results. 1551 * @type int $post_id ID of the post. 1552 * @type bool $no_found_rows Whether to refrain from querying for found rows. 1553 * @type bool $update_comment_meta_cache Whether to prime cache for comment meta. 1554 * @type bool|string $hierarchical Whether to query for comments hierarchically. 1555 * @type int $offset Comment offset. 1556 * @type int $number Number of comments to fetch. 1557 * } 1558 */ 1559 $comment_args = apply_filters( 'comments_template_query_args', $comment_args ); 1560 1561 $comment_query = new WP_Comment_Query( $comment_args ); 1562 $_comments = $comment_query->comments; 1563 1564 // Trees must be flattened before they're passed to the walker. 1565 if ( $comment_args['hierarchical'] ) { 1566 $comments_flat = array(); 1567 foreach ( $_comments as $_comment ) { 1568 $comments_flat[] = $_comment; 1569 $comment_children = $_comment->get_children( 1570 array( 1571 'format' => 'flat', 1572 'status' => $comment_args['status'], 1573 'orderby' => $comment_args['orderby'], 1574 ) 1575 ); 1576 1577 foreach ( $comment_children as $comment_child ) { 1578 $comments_flat[] = $comment_child; 1579 } 1580 } 1581 } else { 1582 $comments_flat = $_comments; 1583 } 1584 1585 /** 1586 * Filters the comments array. 1587 * 1588 * @since 2.1.0 1589 * 1590 * @param array $comments Array of comments supplied to the comments template. 1591 * @param int $post_id Post ID. 1592 */ 1593 $wp_query->comments = apply_filters( 'comments_array', $comments_flat, $post->ID ); 1594 1595 $comments = &$wp_query->comments; 1596 $wp_query->comment_count = count( $wp_query->comments ); 1597 $wp_query->max_num_comment_pages = $comment_query->max_num_pages; 1598 1599 if ( $separate_comments ) { 1600 $wp_query->comments_by_type = separate_comments( $comments ); 1601 $comments_by_type = &$wp_query->comments_by_type; 1602 } else { 1603 $wp_query->comments_by_type = array(); 1604 } 1605 1606 $overridden_cpage = false; 1607 1608 if ( '' === get_query_var( 'cpage' ) && $wp_query->max_num_comment_pages > 1 ) { 1609 set_query_var( 'cpage', 'newest' === get_option( 'default_comments_page' ) ? get_comment_pages_count() : 1 ); 1610 $overridden_cpage = true; 1611 } 1612 1613 if ( ! defined( 'COMMENTS_TEMPLATE' ) ) { 1614 define( 'COMMENTS_TEMPLATE', true ); 1615 } 1616 1617 $theme_template = trailingslashit( $wp_stylesheet_path ) . $file; 1618 1619 /** 1620 * Filters the path to the theme template file used for the comments template. 1621 * 1622 * @since 1.5.1 1623 * 1624 * @param string $theme_template The path to the theme template file. 1625 */ 1626 $include = apply_filters( 'comments_template', $theme_template ); 1627 1628 if ( file_exists( $include ) ) { 1629 require $include; 1630 } elseif ( file_exists( trailingslashit( $wp_template_path ) . $file ) ) { 1631 require trailingslashit( $wp_template_path ) . $file; 1632 } else { // Backward compat code will be removed in a future release. 1633 require ABSPATH . WPINC . '/theme-compat/comments.php'; 1634 } 1635 } 1636 1637 /** 1638 * Displays the link to the comments for the current post ID. 1639 * 1640 * @since 0.71 1641 * 1642 * @param false|string $zero Optional. String to display when no comments. Default false. 1643 * @param false|string $one Optional. String to display when only one comment is available. Default false. 1644 * @param false|string $more Optional. String to display when there are more than one comment. Default false. 1645 * @param string $css_class Optional. CSS class to use for comments. Default empty. 1646 * @param false|string $none Optional. String to display when comments have been turned off. Default false. 1647 */ 1648 function comments_popup_link( $zero = false, $one = false, $more = false, $css_class = '', $none = false ) { 1649 $post_id = get_the_ID(); 1650 $post_title = get_the_title(); 1651 $comments_number = get_comments_number( $post_id ); 1652 1653 if ( false === $zero ) { 1654 /* translators: %s: Post title. */ 1655 $zero = sprintf( __( 'No Comments<span class="screen-reader-text"> on %s</span>' ), $post_title ); 1656 } 1657 1658 if ( false === $one ) { 1659 /* translators: %s: Post title. */ 1660 $one = sprintf( __( '1 Comment<span class="screen-reader-text"> on %s</span>' ), $post_title ); 1661 } 1662 1663 if ( false === $more ) { 1664 /* translators: 1: Number of comments, 2: Post title. */ 1665 $more = _n( 1666 '%1$s Comment<span class="screen-reader-text"> on %2$s</span>', 1667 '%1$s Comments<span class="screen-reader-text"> on %2$s</span>', 1668 $comments_number 1669 ); 1670 $more = sprintf( $more, number_format_i18n( $comments_number ), $post_title ); 1671 } 1672 1673 if ( false === $none ) { 1674 /* translators: %s: Post title. */ 1675 $none = sprintf( __( 'Comments Off<span class="screen-reader-text"> on %s</span>' ), $post_title ); 1676 } 1677 1678 if ( 0 == $comments_number && ! comments_open() && ! pings_open() ) { 1679 printf( 1680 '<span%1$s>%2$s</span>', 1681 ! empty( $css_class ) ? ' class="' . esc_attr( $css_class ) . '"' : '', 1682 $none 1683 ); 1684 return; 1685 } 1686 1687 if ( post_password_required() ) { 1688 _e( 'Enter your password to view comments.' ); 1689 return; 1690 } 1691 1692 if ( 0 == $comments_number ) { 1693 $respond_link = get_permalink() . '#respond'; 1694 /** 1695 * Filters the respond link when a post has no comments. 1696 * 1697 * @since 4.4.0 1698 * 1699 * @param string $respond_link The default response link. 1700 * @param int $post_id The post ID. 1701 */ 1702 $comments_link = apply_filters( 'respond_link', $respond_link, $post_id ); 1703 } else { 1704 $comments_link = get_comments_link(); 1705 } 1706 1707 $link_attributes = ''; 1708 1709 /** 1710 * Filters the comments link attributes for display. 1711 * 1712 * @since 2.5.0 1713 * 1714 * @param string $link_attributes The comments link attributes. Default empty. 1715 */ 1716 $link_attributes = apply_filters( 'comments_popup_link_attributes', $link_attributes ); 1717 1718 printf( 1719 '<a href="%1$s"%2$s%3$s>%4$s</a>', 1720 esc_url( $comments_link ), 1721 ! empty( $css_class ) ? ' class="' . $css_class . '" ' : '', 1722 $link_attributes, 1723 get_comments_number_text( $zero, $one, $more ) 1724 ); 1725 } 1726 1727 /** 1728 * Retrieves HTML content for reply to comment link. 1729 * 1730 * @since 2.7.0 1731 * @since 4.4.0 Added the ability for `$comment` to also accept a WP_Comment object. 1732 * 1733 * @param array $args { 1734 * Optional. Override default arguments. 1735 * 1736 * @type string $add_below The first part of the selector used to identify the comment to respond below. 1737 * The resulting value is passed as the first parameter to addComment.moveForm(), 1738 * concatenated as $add_below-$comment->comment_ID. Default 'comment'. 1739 * @type string $respond_id The selector identifying the responding comment. Passed as the third parameter 1740 * to addComment.moveForm(), and appended to the link URL as a hash value. 1741 * Default 'respond'. 1742 * @type string $reply_text The visible text of the Reply link. Default 'Reply'. 1743 * @type string $reply_to_text The accessible name of the Reply link, using `%s` as a placeholder 1744 * for the comment author's name. Default 'Reply to %s'. 1745 * Should start with the visible `reply_text` value. 1746 * @type bool $show_reply_to_text Whether to use `reply_to_text` as visible link text. Default false. 1747 * @type string $login_text The text of the link to reply if logged out. Default 'Log in to Reply'. 1748 * @type int $max_depth The max depth of the comment tree. Default 0. 1749 * @type int $depth The depth of the new comment. Must be greater than 0 and less than the value 1750 * of the 'thread_comments_depth' option set in Settings > Discussion. Default 0. 1751 * @type string $before The text or HTML to add before the reply link. Default empty. 1752 * @type string $after The text or HTML to add after the reply link. Default empty. 1753 * } 1754 * @param int|WP_Comment $comment Optional. Comment being replied to. Default current comment. 1755 * @param int|WP_Post $post Optional. Post ID or WP_Post object the comment is going to be displayed on. 1756 * Default current post. 1757 * @return string|false|null Link to show comment form, if successful. False, if comments are closed. 1758 */ 1759 function get_comment_reply_link( $args = array(), $comment = null, $post = null ) { 1760 $defaults = array( 1761 'add_below' => 'comment', 1762 'respond_id' => 'respond', 1763 'reply_text' => __( 'Reply' ), 1764 /* translators: Comment reply button text. %s: Comment author name. */ 1765 'reply_to_text' => __( 'Reply to %s' ), 1766 'login_text' => __( 'Log in to Reply' ), 1767 'max_depth' => 0, 1768 'depth' => 0, 1769 'before' => '', 1770 'after' => '', 1771 'show_reply_to_text' => false, 1772 ); 1773 1774 $args = wp_parse_args( $args, $defaults ); 1775 1776 if ( 0 == $args['depth'] || $args['max_depth'] <= $args['depth'] ) { 1777 return; 1778 } 1779 1780 $comment = get_comment( $comment ); 1781 1782 if ( empty( $comment ) ) { 1783 return; 1784 } 1785 1786 if ( empty( $post ) ) { 1787 $post = $comment->comment_post_ID; 1788 } 1789 1790 $post = get_post( $post ); 1791 1792 if ( ! comments_open( $post->ID ) ) { 1793 return false; 1794 } 1795 1796 if ( get_option( 'page_comments' ) ) { 1797 $permalink = str_replace( '#comment-' . $comment->comment_ID, '', get_comment_link( $comment ) ); 1798 } else { 1799 $permalink = get_permalink( $post->ID ); 1800 } 1801 1802 /** 1803 * Filters the comment reply link arguments. 1804 * 1805 * @since 4.1.0 1806 * 1807 * @param array $args Comment reply link arguments. See get_comment_reply_link() 1808 * for more information on accepted arguments. 1809 * @param WP_Comment $comment The object of the comment being replied to. 1810 * @param WP_Post $post The WP_Post object. 1811 */ 1812 $args = apply_filters( 'comment_reply_link_args', $args, $comment, $post ); 1813 1814 if ( get_option( 'comment_registration' ) && ! is_user_logged_in() ) { 1815 $link = sprintf( 1816 '<a rel="nofollow" class="comment-reply-login" href="%s">%s</a>', 1817 esc_url( wp_login_url( get_permalink() ) ), 1818 $args['login_text'] 1819 ); 1820 } else { 1821 $data_attributes = array( 1822 'commentid' => $comment->comment_ID, 1823 'postid' => $post->ID, 1824 'belowelement' => $args['add_below'] . '-' . $comment->comment_ID, 1825 'respondelement' => $args['respond_id'], 1826 'replyto' => sprintf( $args['reply_to_text'], get_comment_author( $comment ) ), 1827 ); 1828 1829 $data_attribute_string = ''; 1830 1831 foreach ( $data_attributes as $name => $value ) { 1832 $data_attribute_string .= " data-{$name}=\"" . esc_attr( $value ) . '"'; 1833 } 1834 1835 $data_attribute_string = trim( $data_attribute_string ); 1836 1837 $reply_text = $args['show_reply_to_text'] 1838 ? sprintf( $args['reply_to_text'], get_comment_author( $comment ) ) 1839 : $args['reply_text']; 1840 1841 $aria_label = $args['show_reply_to_text'] ? '' : sprintf( $args['reply_to_text'], get_comment_author( $comment ) ); 1842 1843 $link = sprintf( 1844 '<a rel="nofollow" class="comment-reply-link" href="%s" %s%s>%s</a>', 1845 esc_url( 1846 add_query_arg( 1847 array( 1848 'replytocom' => $comment->comment_ID, 1849 'unapproved' => false, 1850 'moderation-hash' => false, 1851 ), 1852 $permalink 1853 ) 1854 ) . '#' . $args['respond_id'], 1855 $data_attribute_string, 1856 $aria_label ? ' aria-label="' . esc_attr( $aria_label ) . '"' : '', 1857 $reply_text 1858 ); 1859 } 1860 1861 $comment_reply_link = $args['before'] . $link . $args['after']; 1862 1863 /** 1864 * Filters the comment reply link. 1865 * 1866 * @since 2.7.0 1867 * 1868 * @param string $comment_reply_link The HTML markup for the comment reply link. 1869 * @param array $args An array of arguments overriding the defaults. 1870 * @param WP_Comment $comment The object of the comment being replied. 1871 * @param WP_Post $post The WP_Post object. 1872 */ 1873 return apply_filters( 'comment_reply_link', $comment_reply_link, $args, $comment, $post ); 1874 } 1875 1876 /** 1877 * Displays the HTML content for reply to comment link. 1878 * 1879 * @since 2.7.0 1880 * 1881 * @see get_comment_reply_link() 1882 * 1883 * @param array $args Optional. Override default options. Default empty array. 1884 * @param int|WP_Comment $comment Optional. Comment being replied to. Default current comment. 1885 * @param int|WP_Post $post Optional. Post ID or WP_Post object the comment is going to be displayed on. 1886 * Default current post. 1887 */ 1888 function comment_reply_link( $args = array(), $comment = null, $post = null ) { 1889 echo get_comment_reply_link( $args, $comment, $post ); 1890 } 1891 1892 /** 1893 * Retrieves HTML content for reply to post link. 1894 * 1895 * @since 2.7.0 1896 * 1897 * @param array $args { 1898 * Optional. Override default arguments. 1899 * 1900 * @type string $add_below The first part of the selector used to identify the comment to respond below. 1901 * The resulting value is passed as the first parameter to addComment.moveForm(), 1902 * concatenated as $add_below-$comment->comment_ID. Default is 'post'. 1903 * @type string $respond_id The selector identifying the responding comment. Passed as the third parameter 1904 * to addComment.moveForm(), and appended to the link URL as a hash value. 1905 * Default 'respond'. 1906 * @type string $reply_text Text of the Reply link. Default is 'Leave a Comment'. 1907 * @type string $login_text Text of the link to reply if logged out. Default is 'Log in to leave a Comment'. 1908 * @type string $before Text or HTML to add before the reply link. Default empty. 1909 * @type string $after Text or HTML to add after the reply link. Default empty. 1910 * } 1911 * @param int|WP_Post $post Optional. Post ID or WP_Post object the comment is going to be displayed on. 1912 * Default current post. 1913 * @return string|false|null Link to show comment form, if successful. False, if comments are closed. 1914 */ 1915 function get_post_reply_link( $args = array(), $post = null ) { 1916 $defaults = array( 1917 'add_below' => 'post', 1918 'respond_id' => 'respond', 1919 'reply_text' => __( 'Leave a Comment' ), 1920 'login_text' => __( 'Log in to leave a Comment' ), 1921 'before' => '', 1922 'after' => '', 1923 ); 1924 1925 $args = wp_parse_args( $args, $defaults ); 1926 1927 $post = get_post( $post ); 1928 1929 if ( ! comments_open( $post->ID ) ) { 1930 return false; 1931 } 1932 1933 if ( get_option( 'comment_registration' ) && ! is_user_logged_in() ) { 1934 $link = sprintf( 1935 '<a rel="nofollow" class="comment-reply-login" href="%s">%s</a>', 1936 wp_login_url( get_permalink() ), 1937 $args['login_text'] 1938 ); 1939 } else { 1940 $onclick = sprintf( 1941 'return addComment.moveForm( "%1$s-%2$s", "0", "%3$s", "%2$s" )', 1942 $args['add_below'], 1943 $post->ID, 1944 $args['respond_id'] 1945 ); 1946 1947 $link = sprintf( 1948 "<a rel='nofollow' class='comment-reply-link' href='%s' onclick='%s'>%s</a>", 1949 get_permalink( $post->ID ) . '#' . $args['respond_id'], 1950 $onclick, 1951 $args['reply_text'] 1952 ); 1953 } 1954 1955 $post_reply_link = $args['before'] . $link . $args['after']; 1956 1957 /** 1958 * Filters the formatted post comments link HTML. 1959 * 1960 * @since 2.7.0 1961 * 1962 * @param string $post_reply_link The HTML-formatted post comments link. 1963 * @param int|WP_Post $post The post ID or WP_Post object. 1964 */ 1965 return apply_filters( 'post_comments_link', $post_reply_link, $post ); 1966 } 1967 1968 /** 1969 * Displays the HTML content for reply to post link. 1970 * 1971 * @since 2.7.0 1972 * 1973 * @see get_post_reply_link() 1974 * 1975 * @param array $args Optional. Override default options. Default empty array. 1976 * @param int|WP_Post $post Optional. Post ID or WP_Post object the comment is going to be displayed on. 1977 * Default current post. 1978 */ 1979 function post_reply_link( $args = array(), $post = null ) { 1980 echo get_post_reply_link( $args, $post ); 1981 } 1982 1983 /** 1984 * Retrieves HTML content for cancel comment reply link. 1985 * 1986 * @since 2.7.0 1987 * @since 6.2.0 Added the `$post` parameter. 1988 * 1989 * @param string $link_text Optional. Text to display for cancel reply link. If empty, 1990 * defaults to 'Click here to cancel reply'. Default empty. 1991 * @param int|WP_Post|null $post Optional. The post the comment thread is being 1992 * displayed for. Defaults to the current global post. 1993 * @return string 1994 */ 1995 function get_cancel_comment_reply_link( $link_text = '', $post = null ) { 1996 if ( empty( $link_text ) ) { 1997 $link_text = __( 'Click here to cancel reply.' ); 1998 } 1999 2000 $post = get_post( $post ); 2001 $reply_to_id = $post ? _get_comment_reply_id( $post->ID ) : 0; 2002 $link_style = 0 !== $reply_to_id ? '' : ' style="display:none;"'; 2003 $link_url = esc_url( remove_query_arg( array( 'replytocom', 'unapproved', 'moderation-hash' ) ) ) . '#respond'; 2004 2005 $cancel_comment_reply_link = sprintf( 2006 '<a rel="nofollow" id="cancel-comment-reply-link" href="%1$s"%2$s>%3$s</a>', 2007 $link_url, 2008 $link_style, 2009 $link_text 2010 ); 2011 2012 /** 2013 * Filters the cancel comment reply link HTML. 2014 * 2015 * @since 2.7.0 2016 * 2017 * @param string $cancel_comment_reply_link The HTML-formatted cancel comment reply link. 2018 * @param string $link_url Cancel comment reply link URL. 2019 * @param string $link_text Cancel comment reply link text. 2020 */ 2021 return apply_filters( 'cancel_comment_reply_link', $cancel_comment_reply_link, $link_url, $link_text ); 2022 } 2023 2024 /** 2025 * Displays HTML content for cancel comment reply link. 2026 * 2027 * @since 2.7.0 2028 * 2029 * @param string $link_text Optional. Text to display for cancel reply link. If empty, 2030 * defaults to 'Click here to cancel reply'. Default empty. 2031 */ 2032 function cancel_comment_reply_link( $link_text = '' ) { 2033 echo get_cancel_comment_reply_link( $link_text ); 2034 } 2035 2036 /** 2037 * Retrieves hidden input HTML for replying to comments. 2038 * 2039 * @since 3.0.0 2040 * @since 6.2.0 Renamed `$post_id` to `$post` and added WP_Post support. 2041 * 2042 * @param int|WP_Post|null $post Optional. The post the comment is being displayed for. 2043 * Defaults to the current global post. 2044 * @return string Hidden input HTML for replying to comments. 2045 */ 2046 function get_comment_id_fields( $post = null ) { 2047 $post = get_post( $post ); 2048 if ( ! $post ) { 2049 return ''; 2050 } 2051 2052 $post_id = $post->ID; 2053 $reply_to_id = _get_comment_reply_id( $post_id ); 2054 2055 $comment_id_fields = "<input type='hidden' name='comment_post_ID' value='$post_id' id='comment_post_ID' />\n"; 2056 $comment_id_fields .= "<input type='hidden' name='comment_parent' id='comment_parent' value='$reply_to_id' />\n"; 2057 2058 /** 2059 * Filters the returned comment ID fields. 2060 * 2061 * @since 3.0.0 2062 * 2063 * @param string $comment_id_fields The HTML-formatted hidden ID field comment elements. 2064 * @param int $post_id The post ID. 2065 * @param int $reply_to_id The ID of the comment being replied to. 2066 */ 2067 return apply_filters( 'comment_id_fields', $comment_id_fields, $post_id, $reply_to_id ); 2068 } 2069 2070 /** 2071 * Outputs hidden input HTML for replying to comments. 2072 * 2073 * Adds two hidden inputs to the comment form to identify the `comment_post_ID` 2074 * and `comment_parent` values for threaded comments. 2075 * 2076 * This tag must be within the `<form>` section of the `comments.php` template. 2077 * 2078 * @since 2.7.0 2079 * @since 6.2.0 Renamed `$post_id` to `$post` and added WP_Post support. 2080 * 2081 * @see get_comment_id_fields() 2082 * 2083 * @param int|WP_Post|null $post Optional. The post the comment is being displayed for. 2084 * Defaults to the current global post. 2085 */ 2086 function comment_id_fields( $post = null ) { 2087 echo get_comment_id_fields( $post ); 2088 } 2089 2090 /** 2091 * Displays text based on comment reply status. 2092 * 2093 * Only affects users with JavaScript disabled. 2094 * 2095 * @internal The $comment global must be present to allow template tags access to the current 2096 * comment. See https://core.trac.wordpress.org/changeset/36512. 2097 * 2098 * @since 2.7.0 2099 * @since 6.2.0 Added the `$post` parameter. 2100 * 2101 * @global WP_Comment $comment Global comment object. 2102 * 2103 * @param string|false $no_reply_text Optional. Text to display when not replying to a comment. 2104 * Default false. 2105 * @param string|false $reply_text Optional. Text to display when replying to a comment. 2106 * Default false. Accepts "%s" for the author of the comment 2107 * being replied to. 2108 * @param bool $link_to_parent Optional. Boolean to control making the author's name a link 2109 * to their comment. Default true. 2110 * @param int|WP_Post|null $post Optional. The post that the comment form is being displayed for. 2111 * Defaults to the current global post. 2112 */ 2113 function comment_form_title( $no_reply_text = false, $reply_text = false, $link_to_parent = true, $post = null ) { 2114 global $comment; 2115 2116 if ( false === $no_reply_text ) { 2117 $no_reply_text = __( 'Leave a Reply' ); 2118 } 2119 2120 if ( false === $reply_text ) { 2121 /* translators: %s: Author of the comment being replied to. */ 2122 $reply_text = __( 'Leave a Reply to %s' ); 2123 } 2124 2125 $post = get_post( $post ); 2126 if ( ! $post ) { 2127 echo $no_reply_text; 2128 return; 2129 } 2130 2131 $reply_to_id = _get_comment_reply_id( $post->ID ); 2132 2133 if ( 0 === $reply_to_id ) { 2134 echo $no_reply_text; 2135 return; 2136 } 2137 2138 // Sets the global so that template tags can be used in the comment form. 2139 $comment = get_comment( $reply_to_id ); 2140 2141 if ( $link_to_parent ) { 2142 $comment_author = sprintf( 2143 '<a href="#comment-%1$s">%2$s</a>', 2144 get_comment_ID(), 2145 get_comment_author( $reply_to_id ) 2146 ); 2147 } else { 2148 $comment_author = get_comment_author( $reply_to_id ); 2149 } 2150 2151 printf( $reply_text, $comment_author ); 2152 } 2153 2154 /** 2155 * Gets the comment's reply to ID from the $_GET['replytocom']. 2156 * 2157 * @since 6.2.0 2158 * 2159 * @access private 2160 * 2161 * @param int|WP_Post $post The post the comment is being displayed for. 2162 * Defaults to the current global post. 2163 * @return int Comment's reply to ID. 2164 */ 2165 function _get_comment_reply_id( $post = null ) { 2166 $post = get_post( $post ); 2167 2168 if ( ! $post || ! isset( $_GET['replytocom'] ) || ! is_numeric( $_GET['replytocom'] ) ) { 2169 return 0; 2170 } 2171 2172 $reply_to_id = (int) $_GET['replytocom']; 2173 2174 /* 2175 * Validate the comment. 2176 * Bail out if it does not exist, is not approved, or its 2177 * `comment_post_ID` does not match the given post ID. 2178 */ 2179 $comment = get_comment( $reply_to_id ); 2180 2181 if ( 2182 ! $comment instanceof WP_Comment || 2183 0 === (int) $comment->comment_approved || 2184 $post->ID !== (int) $comment->comment_post_ID 2185 ) { 2186 return 0; 2187 } 2188 2189 return $reply_to_id; 2190 } 2191 2192 /** 2193 * Displays a list of comments. 2194 * 2195 * Used in the comments.php template to list comments for a particular post. 2196 * 2197 * @since 2.7.0 2198 * 2199 * @see WP_Query::$comments 2200 * 2201 * @global WP_Query $wp_query WordPress Query object. 2202 * @global int $comment_alt 2203 * @global int $comment_depth 2204 * @global int $comment_thread_alt 2205 * @global bool $overridden_cpage 2206 * @global bool $in_comment_loop 2207 * 2208 * @param string|array $args { 2209 * Optional. Formatting options. 2210 * 2211 * @type object $walker Instance of a Walker class to list comments. Default null. 2212 * @type int $max_depth The maximum comments depth. Default empty. 2213 * @type string $style The style of list ordering. Accepts 'ul', 'ol', or 'div'. 2214 * 'div' will result in no additional list markup. Default 'ul'. 2215 * @type callable $callback Callback function to use. Default null. 2216 * @type callable $end-callback Callback function to use at the end. Default null. 2217 * @type string $type Type of comments to list. Accepts 'all', 'comment', 2218 * 'pingback', 'trackback', 'pings'. Default 'all'. 2219 * @type int $page Page ID to list comments for. Default empty. 2220 * @type int $per_page Number of comments to list per page. Default empty. 2221 * @type int $avatar_size Height and width dimensions of the avatar size. Default 32. 2222 * @type bool $reverse_top_level Ordering of the listed comments. If true, will display 2223 * newest comments first. Default null. 2224 * @type bool $reverse_children Whether to reverse child comments in the list. Default null. 2225 * @type string $format How to format the comments list. Accepts 'html5', 'xhtml'. 2226 * Default 'html5' if the theme supports it. 2227 * @type bool $short_ping Whether to output short pings. Default false. 2228 * @type bool $echo Whether to echo the output or return it. Default true. 2229 * } 2230 * @param WP_Comment[] $comments Optional. Array of WP_Comment objects. Default null. 2231 * @return void|string Void if 'echo' argument is true, or no comments to list. 2232 * Otherwise, HTML list of comments. 2233 */ 2234 function wp_list_comments( $args = array(), $comments = null ) { 2235 global $wp_query, $comment_alt, $comment_depth, $comment_thread_alt, $overridden_cpage, $in_comment_loop; 2236 2237 $in_comment_loop = true; 2238 2239 $comment_alt = 0; 2240 $comment_thread_alt = 0; 2241 $comment_depth = 1; 2242 2243 $defaults = array( 2244 'walker' => null, 2245 'max_depth' => '', 2246 'style' => 'ul', 2247 'callback' => null, 2248 'end-callback' => null, 2249 'type' => 'all', 2250 'page' => '', 2251 'per_page' => '', 2252 'avatar_size' => 32, 2253 'reverse_top_level' => null, 2254 'reverse_children' => '', 2255 'format' => current_theme_supports( 'html5', 'comment-list' ) ? 'html5' : 'xhtml', 2256 'short_ping' => false, 2257 'echo' => true, 2258 ); 2259 2260 $parsed_args = wp_parse_args( $args, $defaults ); 2261 2262 /** 2263 * Filters the arguments used in retrieving the comment list. 2264 * 2265 * @since 4.0.0 2266 * 2267 * @see wp_list_comments() 2268 * 2269 * @param array $parsed_args An array of arguments for displaying comments. 2270 */ 2271 $parsed_args = apply_filters( 'wp_list_comments_args', $parsed_args ); 2272 2273 // Figure out what comments we'll be looping through ($_comments). 2274 if ( null !== $comments ) { 2275 $comments = (array) $comments; 2276 if ( empty( $comments ) ) { 2277 return; 2278 } 2279 if ( 'all' !== $parsed_args['type'] ) { 2280 $comments_by_type = separate_comments( $comments ); 2281 if ( empty( $comments_by_type[ $parsed_args['type'] ] ) ) { 2282 return; 2283 } 2284 $_comments = $comments_by_type[ $parsed_args['type'] ]; 2285 } else { 2286 $_comments = $comments; 2287 } 2288 } else { 2289 /* 2290 * If 'page' or 'per_page' has been passed, and does not match what's in $wp_query, 2291 * perform a separate comment query and allow Walker_Comment to paginate. 2292 */ 2293 if ( $parsed_args['page'] || $parsed_args['per_page'] ) { 2294 $current_cpage = (int) get_query_var( 'cpage' ); 2295 if ( ! $current_cpage ) { 2296 $current_cpage = 'newest' === get_option( 'default_comments_page' ) ? 1 : $wp_query->max_num_comment_pages; 2297 } 2298 2299 $current_per_page = (int) get_query_var( 'comments_per_page' ); 2300 if ( (int) $parsed_args['page'] !== $current_cpage || (int) $parsed_args['per_page'] !== $current_per_page ) { 2301 $comment_args = array( 2302 'post_id' => get_the_ID(), 2303 'orderby' => 'comment_date_gmt', 2304 'order' => 'ASC', 2305 'status' => 'approve', 2306 ); 2307 2308 if ( is_user_logged_in() ) { 2309 $comment_args['include_unapproved'] = array( get_current_user_id() ); 2310 } else { 2311 $unapproved_email = wp_get_unapproved_comment_author_email(); 2312 2313 if ( $unapproved_email ) { 2314 $comment_args['include_unapproved'] = array( $unapproved_email ); 2315 } 2316 } 2317 2318 $comments = get_comments( $comment_args ); 2319 2320 if ( 'all' !== $parsed_args['type'] ) { 2321 $comments_by_type = separate_comments( $comments ); 2322 if ( empty( $comments_by_type[ $parsed_args['type'] ] ) ) { 2323 return; 2324 } 2325 2326 $_comments = $comments_by_type[ $parsed_args['type'] ]; 2327 } else { 2328 $_comments = $comments; 2329 } 2330 } 2331 2332 // Otherwise, fall back on the comments from `$wp_query->comments`. 2333 } else { 2334 if ( empty( $wp_query->comments ) ) { 2335 return; 2336 } 2337 if ( 'all' !== $parsed_args['type'] ) { 2338 if ( empty( $wp_query->comments_by_type ) ) { 2339 $wp_query->comments_by_type = separate_comments( $wp_query->comments ); 2340 } 2341 if ( empty( $wp_query->comments_by_type[ $parsed_args['type'] ] ) ) { 2342 return; 2343 } 2344 $_comments = $wp_query->comments_by_type[ $parsed_args['type'] ]; 2345 } else { 2346 $_comments = $wp_query->comments; 2347 } 2348 2349 if ( $wp_query->max_num_comment_pages ) { 2350 $default_comments_page = get_option( 'default_comments_page' ); 2351 $cpage = (int) get_query_var( 'cpage' ); 2352 2353 if ( 'newest' === $default_comments_page ) { 2354 $parsed_args['cpage'] = $cpage; 2355 } elseif ( 1 === $cpage ) { 2356 /* 2357 * When the first page shows the oldest comments, 2358 * post permalink is the same as the comment permalink. 2359 */ 2360 $parsed_args['cpage'] = ''; 2361 } else { 2362 $parsed_args['cpage'] = $cpage; 2363 } 2364 2365 $parsed_args['page'] = 0; 2366 $parsed_args['per_page'] = 0; 2367 } 2368 } 2369 } 2370 2371 if ( '' === $parsed_args['per_page'] && get_option( 'page_comments' ) ) { 2372 $parsed_args['per_page'] = get_query_var( 'comments_per_page' ); 2373 } 2374 2375 if ( empty( $parsed_args['per_page'] ) ) { 2376 $parsed_args['per_page'] = 0; 2377 $parsed_args['page'] = 0; 2378 } 2379 2380 if ( '' === $parsed_args['max_depth'] ) { 2381 if ( get_option( 'thread_comments' ) ) { 2382 $parsed_args['max_depth'] = get_option( 'thread_comments_depth' ); 2383 } else { 2384 $parsed_args['max_depth'] = -1; 2385 } 2386 } 2387 2388 if ( '' === $parsed_args['page'] ) { 2389 if ( empty( $overridden_cpage ) ) { 2390 $parsed_args['page'] = get_query_var( 'cpage' ); 2391 } else { 2392 $threaded = ( -1 !== (int) $parsed_args['max_depth'] ); 2393 $parsed_args['page'] = ( 'newest' === get_option( 'default_comments_page' ) ) ? get_comment_pages_count( $_comments, $parsed_args['per_page'], $threaded ) : 1; 2394 set_query_var( 'cpage', $parsed_args['page'] ); 2395 } 2396 } 2397 2398 // Validation check. 2399 $parsed_args['page'] = (int) $parsed_args['page']; 2400 $parsed_args['per_page'] = (int) $parsed_args['per_page']; 2401 if ( 0 === $parsed_args['page'] && 0 !== $parsed_args['per_page'] ) { 2402 $parsed_args['page'] = 1; 2403 } 2404 2405 if ( null === $parsed_args['reverse_top_level'] ) { 2406 $parsed_args['reverse_top_level'] = ( 'desc' === get_option( 'comment_order' ) ); 2407 } 2408 2409 if ( empty( $parsed_args['walker'] ) ) { 2410 $walker = new Walker_Comment(); 2411 } else { 2412 $walker = $parsed_args['walker']; 2413 } 2414 2415 $output = $walker->paged_walk( $_comments, $parsed_args['max_depth'], $parsed_args['page'], $parsed_args['per_page'], $parsed_args ); 2416 2417 $in_comment_loop = false; 2418 2419 if ( $parsed_args['echo'] ) { 2420 echo $output; 2421 } else { 2422 return $output; 2423 } 2424 } 2425 2426 /** 2427 * Outputs a complete commenting form for use within a template. 2428 * 2429 * Most strings and form fields may be controlled through the `$args` array passed 2430 * into the function, while you may also choose to use the {@see 'comment_form_default_fields'} 2431 * filter to modify the array of default fields if you'd just like to add a new 2432 * one or remove a single field. All fields are also individually passed through 2433 * a filter of the {@see 'comment_form_field_$name'} where `$name` is the key used 2434 * in the array of fields. 2435 * 2436 * @since 3.0.0 2437 * @since 4.1.0 Introduced the 'class_submit' argument. 2438 * @since 4.2.0 Introduced the 'submit_button' and 'submit_fields' arguments. 2439 * @since 4.4.0 Introduced the 'class_form', 'title_reply_before', 'title_reply_after', 2440 * 'cancel_reply_before', and 'cancel_reply_after' arguments. 2441 * @since 4.5.0 The 'author', 'email', and 'url' form fields are limited to 245, 100, 2442 * and 200 characters, respectively. 2443 * @since 4.6.0 Introduced the 'action' argument. 2444 * @since 4.9.6 Introduced the 'cookies' default comment field. 2445 * @since 5.5.0 Introduced the 'class_container' argument. 2446 * 2447 * @param array $args { 2448 * Optional. Default arguments and form fields to override. 2449 * 2450 * @type array $fields { 2451 * Default comment fields, filterable by default via the {@see 'comment_form_default_fields'} hook. 2452 * 2453 * @type string $author Comment author field HTML. 2454 * @type string $email Comment author email field HTML. 2455 * @type string $url Comment author URL field HTML. 2456 * @type string $cookies Comment cookie opt-in field HTML. 2457 * } 2458 * @type string $comment_field The comment textarea field HTML. 2459 * @type string $must_log_in HTML element for a 'must be logged in to comment' message. 2460 * @type string $logged_in_as The HTML for the 'logged in as [user]' message, the Edit profile link, 2461 * and the Log out link. 2462 * @type string $comment_notes_before HTML element for a message displayed before the comment fields 2463 * if the user is not logged in. 2464 * Default 'Your email address will not be published.'. 2465 * @type string $comment_notes_after HTML element for a message displayed after the textarea field. 2466 * @type string $action The comment form element action attribute. Default '/wp-comments-post.php'. 2467 * @type string $id_form The comment form element id attribute. Default 'commentform'. 2468 * @type string $id_submit The comment submit element id attribute. Default 'submit'. 2469 * @type string $class_container The comment form container class attribute. Default 'comment-respond'. 2470 * @type string $class_form The comment form element class attribute. Default 'comment-form'. 2471 * @type string $class_submit The comment submit element class attribute. Default 'submit'. 2472 * @type string $name_submit The comment submit element name attribute. Default 'submit'. 2473 * @type string $title_reply The translatable 'reply' button label. Default 'Leave a Reply'. 2474 * @type string $title_reply_to The translatable 'reply-to' button label. Default 'Leave a Reply to %s', 2475 * where %s is the author of the comment being replied to. 2476 * @type string $title_reply_before HTML displayed before the comment form title. 2477 * Default: '<h3 id="reply-title" class="comment-reply-title">'. 2478 * @type string $title_reply_after HTML displayed after the comment form title. 2479 * Default: '</h3>'. 2480 * @type string $cancel_reply_before HTML displayed before the cancel reply link. 2481 * @type string $cancel_reply_after HTML displayed after the cancel reply link. 2482 * @type string $cancel_reply_link The translatable 'cancel reply' button label. Default 'Cancel reply'. 2483 * @type string $label_submit The translatable 'submit' button label. Default 'Post a comment'. 2484 * @type string $submit_button HTML format for the Submit button. 2485 * Default: '<input name="%1$s" type="submit" id="%2$s" class="%3$s" value="%4$s" />'. 2486 * @type string $submit_field HTML format for the markup surrounding the Submit button and comment hidden 2487 * fields. Default: '<p class="form-submit">%1$s %2$s</p>', where %1$s is the 2488 * submit button markup and %2$s is the comment hidden fields. 2489 * @type string $format The comment form format. Default 'xhtml'. Accepts 'xhtml', 'html5'. 2490 * } 2491 * @param int|WP_Post $post Optional. Post ID or WP_Post object to generate the form for. Default current post. 2492 */ 2493 function comment_form( $args = array(), $post = null ) { 2494 $post = get_post( $post ); 2495 2496 // Exit the function if the post is invalid or comments are closed. 2497 if ( ! $post || ! comments_open( $post ) ) { 2498 /** 2499 * Fires after the comment form if comments are closed. 2500 * 2501 * For backward compatibility, this action also fires if comment_form() 2502 * is called with an invalid post object or ID. 2503 * 2504 * @since 3.0.0 2505 */ 2506 do_action( 'comment_form_comments_closed' ); 2507 2508 return; 2509 } 2510 2511 $post_id = $post->ID; 2512 $commenter = wp_get_current_commenter(); 2513 $user = wp_get_current_user(); 2514 $user_identity = $user->exists() ? $user->display_name : ''; 2515 2516 $args = wp_parse_args( $args ); 2517 if ( ! isset( $args['format'] ) ) { 2518 $args['format'] = current_theme_supports( 'html5', 'comment-form' ) ? 'html5' : 'xhtml'; 2519 } 2520 2521 $req = get_option( 'require_name_email' ); 2522 $html5 = 'html5' === $args['format']; 2523 2524 // Define attributes in HTML5 or XHTML syntax. 2525 $required_attribute = ( $html5 ? ' required' : ' required="required"' ); 2526 $checked_attribute = ( $html5 ? ' checked' : ' checked="checked"' ); 2527 2528 // Identify required fields visually and create a message about the indicator. 2529 $required_indicator = ' ' . wp_required_field_indicator(); 2530 $required_text = ' ' . wp_required_field_message(); 2531 2532 $fields = array( 2533 'author' => sprintf( 2534 '<p class="comment-form-author">%s %s</p>', 2535 sprintf( 2536 '<label for="author">%s%s</label>', 2537 __( 'Name' ), 2538 ( $req ? $required_indicator : '' ) 2539 ), 2540 sprintf( 2541 '<input id="author" name="author" type="text" value="%s" size="30" maxlength="245" autocomplete="name"%s />', 2542 esc_attr( $commenter['comment_author'] ), 2543 ( $req ? $required_attribute : '' ) 2544 ) 2545 ), 2546 'email' => sprintf( 2547 '<p class="comment-form-email">%s %s</p>', 2548 sprintf( 2549 '<label for="email">%s%s</label>', 2550 __( 'Email' ), 2551 ( $req ? $required_indicator : '' ) 2552 ), 2553 sprintf( 2554 '<input id="email" name="email" %s value="%s" size="30" maxlength="100" aria-describedby="email-notes" autocomplete="email"%s />', 2555 ( $html5 ? 'type="email"' : 'type="text"' ), 2556 esc_attr( $commenter['comment_author_email'] ), 2557 ( $req ? $required_attribute : '' ) 2558 ) 2559 ), 2560 'url' => sprintf( 2561 '<p class="comment-form-url">%s %s</p>', 2562 sprintf( 2563 '<label for="url">%s</label>', 2564 __( 'Website' ) 2565 ), 2566 sprintf( 2567 '<input id="url" name="url" %s value="%s" size="30" maxlength="200" autocomplete="url" />', 2568 ( $html5 ? 'type="url"' : 'type="text"' ), 2569 esc_attr( $commenter['comment_author_url'] ) 2570 ) 2571 ), 2572 ); 2573 2574 if ( has_action( 'set_comment_cookies', 'wp_set_comment_cookies' ) && get_option( 'show_comments_cookies_opt_in' ) ) { 2575 $consent = empty( $commenter['comment_author_email'] ) ? '' : $checked_attribute; 2576 2577 $fields['cookies'] = sprintf( 2578 '<p class="comment-form-cookies-consent">%s %s</p>', 2579 sprintf( 2580 '<input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes"%s />', 2581 $consent 2582 ), 2583 sprintf( 2584 '<label for="wp-comment-cookies-consent">%s</label>', 2585 __( 'Save my name, email, and website in this browser for the next time I comment.' ) 2586 ) 2587 ); 2588 2589 // Ensure that the passed fields include cookies consent. 2590 if ( isset( $args['fields'] ) && ! isset( $args['fields']['cookies'] ) ) { 2591 $args['fields']['cookies'] = $fields['cookies']; 2592 } 2593 } 2594 2595 /** 2596 * Filters the default comment form fields. 2597 * 2598 * @since 3.0.0 2599 * 2600 * @param string[] $fields Array of the default comment fields. 2601 */ 2602 $fields = apply_filters( 'comment_form_default_fields', $fields ); 2603 2604 $defaults = array( 2605 'fields' => $fields, 2606 'comment_field' => sprintf( 2607 '<p class="comment-form-comment">%s %s</p>', 2608 sprintf( 2609 '<label for="comment">%s%s</label>', 2610 _x( 'Comment', 'noun' ), 2611 $required_indicator 2612 ), 2613 '<textarea id="comment" name="comment" cols="45" rows="8" maxlength="65525"' . $required_attribute . '></textarea>' 2614 ), 2615 'must_log_in' => sprintf( 2616 '<p class="must-log-in">%s</p>', 2617 sprintf( 2618 /* translators: %s: Login URL. */ 2619 __( 'You must be <a href="%s">logged in</a> to post a comment.' ), 2620 /** This filter is documented in wp-includes/link-template.php */ 2621 wp_login_url( apply_filters( 'the_permalink', get_permalink( $post_id ), $post_id ) ) 2622 ) 2623 ), 2624 'logged_in_as' => sprintf( 2625 '<p class="logged-in-as">%s%s</p>', 2626 sprintf( 2627 /* translators: 1: User name, 2: Edit user link, 3: Logout URL. */ 2628 __( 'Logged in as %1$s. <a href="%2$s">Edit your profile</a>. <a href="%3$s">Log out?</a>' ), 2629 $user_identity, 2630 get_edit_user_link(), 2631 /** This filter is documented in wp-includes/link-template.php */ 2632 wp_logout_url( apply_filters( 'the_permalink', get_permalink( $post_id ), $post_id ) ) 2633 ), 2634 $required_text 2635 ), 2636 'comment_notes_before' => sprintf( 2637 '<p class="comment-notes">%s%s</p>', 2638 sprintf( 2639 '<span id="email-notes">%s</span>', 2640 __( 'Your email address will not be published.' ) 2641 ), 2642 $required_text 2643 ), 2644 'comment_notes_after' => '', 2645 'action' => site_url( '/wp-comments-post.php' ), 2646 'id_form' => 'commentform', 2647 'id_submit' => 'submit', 2648 'class_container' => 'comment-respond', 2649 'class_form' => 'comment-form', 2650 'class_submit' => 'submit', 2651 'name_submit' => 'submit', 2652 'title_reply' => __( 'Leave a Reply' ), 2653 /* translators: %s: Author of the comment being replied to. */ 2654 'title_reply_to' => __( 'Leave a Reply to %s' ), 2655 'title_reply_before' => '<h3 id="reply-title" class="comment-reply-title">', 2656 'title_reply_after' => '</h3>', 2657 'cancel_reply_before' => ' <small>', 2658 'cancel_reply_after' => '</small>', 2659 'cancel_reply_link' => __( 'Cancel reply' ), 2660 'label_submit' => __( 'Post Comment' ), 2661 'submit_button' => '<input name="%1$s" type="submit" id="%2$s" class="%3$s" value="%4$s" />', 2662 'submit_field' => '<p class="form-submit">%1$s %2$s</p>', 2663 'format' => 'xhtml', 2664 ); 2665 2666 /** 2667 * Filters the comment form default arguments. 2668 * 2669 * Use {@see 'comment_form_default_fields'} to filter the comment fields. 2670 * 2671 * @since 3.0.0 2672 * 2673 * @param array $defaults The default comment form arguments. 2674 */ 2675 $args = wp_parse_args( $args, apply_filters( 'comment_form_defaults', $defaults ) ); 2676 2677 // Ensure that the filtered arguments contain all required default values. 2678 $args = array_merge( $defaults, $args ); 2679 2680 // Remove `aria-describedby` from the email field if there's no associated description. 2681 if ( isset( $args['fields']['email'] ) && ! str_contains( $args['comment_notes_before'], 'id="email-notes"' ) ) { 2682 $args['fields']['email'] = str_replace( 2683 ' aria-describedby="email-notes"', 2684 '', 2685 $args['fields']['email'] 2686 ); 2687 } 2688 2689 /** 2690 * Fires before the comment form. 2691 * 2692 * @since 3.0.0 2693 */ 2694 do_action( 'comment_form_before' ); 2695 ?> 2696 <div id="respond" class="<?php echo esc_attr( $args['class_container'] ); ?>"> 2697 <?php 2698 echo $args['title_reply_before']; 2699 2700 comment_form_title( $args['title_reply'], $args['title_reply_to'], true, $post_id ); 2701 2702 if ( get_option( 'thread_comments' ) ) { 2703 echo $args['cancel_reply_before']; 2704 2705 cancel_comment_reply_link( $args['cancel_reply_link'] ); 2706 2707 echo $args['cancel_reply_after']; 2708 } 2709 2710 echo $args['title_reply_after']; 2711 2712 if ( get_option( 'comment_registration' ) && ! is_user_logged_in() ) : 2713 2714 echo $args['must_log_in']; 2715 /** 2716 * Fires after the HTML-formatted 'must log in after' message in the comment form. 2717 * 2718 * @since 3.0.0 2719 */ 2720 do_action( 'comment_form_must_log_in_after' ); 2721 2722 else : 2723 2724 printf( 2725 '<form action="%s" method="post" id="%s" class="%s"%s>', 2726 esc_url( $args['action'] ), 2727 esc_attr( $args['id_form'] ), 2728 esc_attr( $args['class_form'] ), 2729 ( $html5 ? ' novalidate' : '' ) 2730 ); 2731 2732 /** 2733 * Fires at the top of the comment form, inside the form tag. 2734 * 2735 * @since 3.0.0 2736 */ 2737 do_action( 'comment_form_top' ); 2738 2739 if ( is_user_logged_in() ) : 2740 2741 /** 2742 * Filters the 'logged in' message for the comment form for display. 2743 * 2744 * @since 3.0.0 2745 * 2746 * @param string $args_logged_in The HTML for the 'logged in as [user]' message, 2747 * the Edit profile link, and the Log out link. 2748 * @param array $commenter An array containing the comment author's 2749 * username, email, and URL. 2750 * @param string $user_identity If the commenter is a registered user, 2751 * the display name, blank otherwise. 2752 */ 2753 echo apply_filters( 'comment_form_logged_in', $args['logged_in_as'], $commenter, $user_identity ); 2754 2755 /** 2756 * Fires after the is_user_logged_in() check in the comment form. 2757 * 2758 * @since 3.0.0 2759 * 2760 * @param array $commenter An array containing the comment author's 2761 * username, email, and URL. 2762 * @param string $user_identity If the commenter is a registered user, 2763 * the display name, blank otherwise. 2764 */ 2765 do_action( 'comment_form_logged_in_after', $commenter, $user_identity ); 2766 2767 else : 2768 2769 echo $args['comment_notes_before']; 2770 2771 endif; 2772 2773 // Prepare an array of all fields, including the textarea. 2774 $comment_fields = array( 'comment' => $args['comment_field'] ) + (array) $args['fields']; 2775 2776 /** 2777 * Filters the comment form fields, including the textarea. 2778 * 2779 * @since 4.4.0 2780 * 2781 * @param array $comment_fields The comment fields. 2782 */ 2783 $comment_fields = apply_filters( 'comment_form_fields', $comment_fields ); 2784 2785 // Get an array of field names, excluding the textarea. 2786 $comment_field_keys = array_diff( array_keys( $comment_fields ), array( 'comment' ) ); 2787 2788 // Get the first and the last field name, excluding the textarea. 2789 $first_field = reset( $comment_field_keys ); 2790 $last_field = end( $comment_field_keys ); 2791 2792 foreach ( $comment_fields as $name => $field ) { 2793 2794 if ( 'comment' === $name ) { 2795 2796 /** 2797 * Filters the content of the comment textarea field for display. 2798 * 2799 * @since 3.0.0 2800 * 2801 * @param string $args_comment_field The content of the comment textarea field. 2802 */ 2803 echo apply_filters( 'comment_form_field_comment', $field ); 2804 2805 echo $args['comment_notes_after']; 2806 2807 } elseif ( ! is_user_logged_in() ) { 2808 2809 if ( $first_field === $name ) { 2810 /** 2811 * Fires before the comment fields in the comment form, excluding the textarea. 2812 * 2813 * @since 3.0.0 2814 */ 2815 do_action( 'comment_form_before_fields' ); 2816 } 2817 2818 /** 2819 * Filters a comment form field for display. 2820 * 2821 * The dynamic portion of the hook name, `$name`, refers to the name 2822 * of the comment form field. 2823 * 2824 * Possible hook names include: 2825 * 2826 * - `comment_form_field_comment` 2827 * - `comment_form_field_author` 2828 * - `comment_form_field_email` 2829 * - `comment_form_field_url` 2830 * - `comment_form_field_cookies` 2831 * 2832 * @since 3.0.0 2833 * 2834 * @param string $field The HTML-formatted output of the comment form field. 2835 */ 2836 echo apply_filters( "comment_form_field_{$name}", $field ) . "\n"; 2837 2838 if ( $last_field === $name ) { 2839 /** 2840 * Fires after the comment fields in the comment form, excluding the textarea. 2841 * 2842 * @since 3.0.0 2843 */ 2844 do_action( 'comment_form_after_fields' ); 2845 } 2846 } 2847 } 2848 2849 $submit_button = sprintf( 2850 $args['submit_button'], 2851 esc_attr( $args['name_submit'] ), 2852 esc_attr( $args['id_submit'] ), 2853 esc_attr( $args['class_submit'] ), 2854 esc_attr( $args['label_submit'] ) 2855 ); 2856 2857 /** 2858 * Filters the submit button for the comment form to display. 2859 * 2860 * @since 4.2.0 2861 * 2862 * @param string $submit_button HTML markup for the submit button. 2863 * @param array $args Arguments passed to comment_form(). 2864 */ 2865 $submit_button = apply_filters( 'comment_form_submit_button', $submit_button, $args ); 2866 2867 $submit_field = sprintf( 2868 $args['submit_field'], 2869 $submit_button, 2870 get_comment_id_fields( $post_id ) 2871 ); 2872 2873 /** 2874 * Filters the submit field for the comment form to display. 2875 * 2876 * The submit field includes the submit button, hidden fields for the 2877 * comment form, and any wrapper markup. 2878 * 2879 * @since 4.2.0 2880 * 2881 * @param string $submit_field HTML markup for the submit field. 2882 * @param array $args Arguments passed to comment_form(). 2883 */ 2884 echo apply_filters( 'comment_form_submit_field', $submit_field, $args ); 2885 2886 /** 2887 * Fires at the bottom of the comment form, inside the closing form tag. 2888 * 2889 * @since 1.5.0 2890 * 2891 * @param int $post_id The post ID. 2892 */ 2893 do_action( 'comment_form', $post_id ); 2894 2895 echo '</form>'; 2896 2897 endif; 2898 ?> 2899 </div><!-- #respond --> 2900 <?php 2901 2902 /** 2903 * Fires after the comment form. 2904 * 2905 * @since 3.0.0 2906 */ 2907 do_action( 'comment_form_after' ); 2908 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated : Thu Nov 21 08:20:01 2024 | Cross-referenced by PHPXref |