21 lines
512 B
PHP
21 lines
512 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>
|
|
<form method="post" action="<?php echo esc_url( admin_url( 'options.php' ) ); ?>">
|
|
<?php
|
|
settings_fields( Robotstxt_Manager_Settings::OPTION_GROUP );
|
|
do_settings_sections( Robotstxt_Manager_Settings::PAGE_SLUG );
|
|
submit_button();
|
|
?>
|
|
</form>
|
|
</div>
|