author | ymh <ymh.work@gmail.com> |
Wed, 06 Nov 2013 03:21:17 +0000 | |
changeset 0 | d970ebf37754 |
child 9 | 177826044cd9 |
permissions | -rw-r--r-- |
0 | 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; |