This commit is contained in:
Javier Casares 2026-08-12 13:18:40 +00:00
commit bc1cb5e00a
32 changed files with 4254 additions and 0 deletions

View file

@ -0,0 +1,21 @@
<?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>