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