Advertisement
BratokHR

Untitled

Aug 4th, 2020
1,848
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.09 KB | None | 0 0
  1. // Вывод страницы настройки формы
  2. function hr_plugin_options_callback()
  3. {
  4.   ?>
  5.  <div class="wrap">
  6.  <h1>Your Plugin Name</h1>
  7.  
  8.  <form method="post" action="options.php">
  9.      <?php settings_fields( 'my-cool-plugin-settings-group' );  ?>
  10.      <?php do_settings_sections( 'my-cool-plugin-settings-group' );  ?>
  11.      <table class="form-table">
  12.          <tr valign="top">
  13.          <th scope="row">New Option Name</th>
  14.          <td><input type="text" name="new_option_name" value="<?php echo esc_attr( get_option('new_option_name') ); ?>" /></td>
  15.          </tr>
  16.  
  17.          <tr valign="top">
  18.          <th scope="row">Some Other Option</th>
  19.          <td><input type="text" name="some_other_option" value="<?php echo esc_attr( get_option('some_other_option') ); ?>" /></td>
  20.          </tr>
  21.  
  22.          <tr valign="top">
  23.          <th scope="row">Options, Etc.</th>
  24.          <td><input type="text" name="option_etc" value="<?php echo esc_attr( get_option('option_etc') ); ?>" /></td>
  25.          </tr>
  26.      </table>
  27.  
  28.      <?php submit_button();  ?>
  29.  
  30.  </form>
  31.  </div>
  32.  <?php
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement