mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
5f6cdc2c3b
See #33701. Built from https://develop.svn.wordpress.org/trunk@34410 git-svn-id: http://core.svn.wordpress.org/trunk@34374 1a063a9b-81f0-0310-95a4-ce76da25c4cd
21 lines
466 B
PHP
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' );
|