2004-12-16 02:57:05 +00:00
|
|
|
<?php
|
2008-01-04 20:03:42 +00:00
|
|
|
/**
|
2015-09-04 01:47:25 +00:00
|
|
|
* Core Comments API
|
2008-01-04 20:03:42 +00:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2008-08-04 22:29:37 +00:00
|
|
|
* @subpackage Comment
|
2015-09-04 01:47:25 +00:00
|
|
|
* @since 1.5.0
|
2008-01-04 20:03:42 +00:00
|
|
|
*/
|
|
|
|
|
2015-09-04 01:47:25 +00:00
|
|
|
/** WP_Comment class */
|
2015-09-03 18:17:24 +00:00
|
|
|
require_once( ABSPATH . WPINC . '/class-wp-comment.php' );
|
2015-09-04 01:47:25 +00:00
|
|
|
|
|
|
|
/** WP_Comment_Query class */
|
2015-08-26 04:27:21 +00:00
|
|
|
require_once( ABSPATH . WPINC . '/class-wp-comment-query.php' );
|
2015-09-04 01:47:25 +00:00
|
|
|
|
2015-09-09 02:41:24 +00:00
|
|
|
/** Walker_Comment class */
|
|
|
|
require_once( ABSPATH . WPINC . '/class-walker-comment.php' );
|
|
|
|
|
2015-09-04 01:47:25 +00:00
|
|
|
/** Core comments functionality */
|
2015-08-26 04:27:21 +00:00
|
|
|
require_once( ABSPATH . WPINC . '/comment-functions.php' );
|