mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
See #33701. git-svn-id: https://develop.svn.wordpress.org/trunk@34410 602fd350-edb4-49c9-b593-d223f7449a82
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' );
|