WordPress/wp-includes/comment.php
Scott Taylor f07ab12359 Comments: move WP_Comment_Query into its own file. comment.php loads the new files, so this is 100% BC if someone is loading comment.php directly. New files created using svn cp.
Creates: 
`class-wp-comment-query.php` 
`comment-functions.php` 

`comment.php` contains only top-level code. Class file only contains the class. Functions file only contains functions.

See #33413.

Built from https://develop.svn.wordpress.org/trunk@33750


git-svn-id: http://core.svn.wordpress.org/trunk@33718 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-08-26 04:27:21 +00:00

11 lines
218 B
PHP

<?php
/**
* Manages WordPress comments
*
* @package WordPress
* @subpackage Comment
*/
require_once( ABSPATH . WPINC . '/class-wp-comment-query.php' );
require_once( ABSPATH . WPINC . '/comment-functions.php' );