changeset 0 | d970ebf37754 |
child 9 | 177826044cd9 |
-1:000000000000 | 0:d970ebf37754 |
---|---|
1 <?php |
|
2 /** |
|
3 * Comment Moderation Administration Screen. |
|
4 * |
|
5 * Redirects to edit-comments.php?comment_status=moderated. |
|
6 * |
|
7 * @package WordPress |
|
8 * @subpackage Administration |
|
9 */ |
|
10 require_once( dirname( dirname( __FILE__ ) ) . '/wp-load.php' ); |
|
11 wp_redirect( admin_url('edit-comments.php?comment_status=moderated') ); |
|
12 exit; |