Changeset 33900 for trunk/src/wp-includes/comment.php
- Timestamp:
- 09/04/2015 01:46:29 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment.php
r33891 r33900 1 1 <?php 2 2 /** 3 * Manages WordPress comments3 * Core Comments API 4 4 * 5 5 * @package WordPress 6 6 * @subpackage Comment 7 * @since 1.5.0 7 8 */ 8 9 10 /** WP_Comment class */ 9 11 require_once( ABSPATH . WPINC . '/class-wp-comment.php' ); 12 13 /** WP_Comment_Query class */ 10 14 require_once( ABSPATH . WPINC . '/class-wp-comment-query.php' ); 15 16 /** Core comments functionality */ 11 17 require_once( ABSPATH . WPINC . '/comment-functions.php' );
Note: See TracChangeset
for help on using the changeset viewer.