mirror of
https://github.com/janunger/rheinwerk-video-training.git
synced 2024-11-21 22:53:41 +01:00
13 lines
320 B
PHP
Executable File
13 lines
320 B
PHP
Executable File
<?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;
|