WordPress/wp-includes/comment.php
Drew Jaynes bfe8b01ef2 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.

Built from https://develop.svn.wordpress.org/trunk@33900


git-svn-id: http://core.svn.wordpress.org/trunk@33869 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-09-04 01:47:25 +00:00

18 lines
375 B
PHP

<?php
/**
* 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' );