mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 18:32:23 +01:00
bfe8b01ef2
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
18 lines
375 B
PHP
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' );
|