Files
DESKTOP-DH6BVPV\chiefsoft 73be26afdf first commit
2022-11-20 09:38:29 -05:00

13 lines
307 B
PHP

<?php
/**
* Comment Moderation Administration Screen.
*
* Redirects to edit-comments.php?comment_status=moderated.
*
* @package WordPress
* @subpackage Administration
*/
require_once dirname( __DIR__ ) . '/wp-load.php';
wp_redirect( admin_url( 'edit-comments.php?comment_status=moderated' ) );
exit;