| author | ymh <ymh.work@gmail.com> |
| Tue, 22 Oct 2019 16:11:46 +0200 | |
| changeset 15 | 3d4e9c994f10 |
| parent 9 | 177826044cd9 |
| child 16 | a86126ab1dd4 |
| permissions | -rw-r--r-- |
<?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;