mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 02:10:45 +01:00
13 lines
320 B
PHP
13 lines
320 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Comment Moderation Administration Screen.
|
||
|
*
|
||
|
* Redirects to edit-comments.php?comment_status=moderated.
|
||
|
*
|
||
|
* @package WordPress
|
||
|
* @subpackage Administration
|
||
|
*/
|
||
|
require_once( dirname( dirname( __FILE__ ) ) . '/wp-load.php' );
|
||
|
wp_redirect( admin_url('edit-comments.php?comment_status=moderated') );
|
||
|
exit;
|