wordpress-develop/src/wp-includes/comment.php
Drew Jaynes 4e0b71390f Docs: The Comment API is singular.
See #33701.


git-svn-id: https://develop.svn.wordpress.org/trunk@34410 602fd350-edb4-49c9-b593-d223f7449a82
2015-09-22 13:43:55 +00:00

21 lines
466 B
PHP

<?php
/**
* Core Comment 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' );
/** Walker_Comment class */
require_once( ABSPATH . WPINC . '/class-walker-comment.php' );
/** Core comments functionality */
require_once( ABSPATH . WPINC . '/comment-functions.php' );