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