mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-05 05:04:31 +00:00
Docs: Clarify the file header summary for wp-includes/comment.php, the top-level file for the core Comments API.
Also adds inline DocBlock for the `require_once()` calls that now bring in the `WP_Comment` and `WP_Comment_Query` classes, as well as core comments functionality. See #33413. See #33701. git-svn-id: https://develop.svn.wordpress.org/trunk@33900 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -1,11 +1,17 @@
|
||||
<?php
|
||||
/**
|
||||
* Manages WordPress comments
|
||||
* Core Comments API
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Comment
|
||||
* @since 1.5.0
|
||||
*/
|
||||
|
||||
/** WP_Comment class */
|
||||
require_once( ABSPATH . WPINC . '/class-wp-comment.php' );
|
||||
|
||||
/** WP_Comment_Query class */
|
||||
require_once( ABSPATH . WPINC . '/class-wp-comment-query.php' );
|
||||
|
||||
/** Core comments functionality */
|
||||
require_once( ABSPATH . WPINC . '/comment-functions.php' );
|
||||
|
||||
Reference in New Issue
Block a user