mirror of
https://github.com/kennethreitz-archive/wordpress-skeleton.git
synced 2026-06-05 23:50:19 +00:00
13 lines
270 B
PHP
13 lines
270 B
PHP
<?php
|
|
/**
|
|
* Comment Moderation Administration Panel.
|
|
*
|
|
* Redirects to edit-comments.php?comment_status=moderated.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Administration
|
|
*/
|
|
require_once('../wp-load.php');
|
|
wp_redirect('edit-comments.php?comment_status=moderated');
|
|
?>
|