22 lines
524 B
PHP
22 lines
524 B
PHP
<?php
|
|
/**
|
|
* Admin page view: ROBOTSTXT Manager settings.
|
|
*
|
|
* @package Robotstxt_Manager
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
?>
|
|
<div class="wrap">
|
|
<h1><?php esc_html_e( 'Manager (by ROBOTSTXT) — Settings', 'robotstxt-manager' ); ?></h1>
|
|
<?php settings_errors(); ?>
|
|
<form method="post" action="">
|
|
<?php
|
|
wp_nonce_field( 'robotstxt_manager_settings_group', 'robotstxt_manager_settings_group_nonce' );
|
|
do_settings_sections( Robotstxt_Manager_Settings::PAGE_SLUG );
|
|
submit_button();
|
|
?>
|
|
</form>
|
|
</div>
|