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