Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php
  2. function newsletter() {
  3. ?>
  4. <div>
  5. <h2>Hello World Options</h2>
  6.  
  7. <form method="post" action="options.php">
  8. <?php wp_nonce_field('update-options'); ?>
  9.  
  10. <input name="hello_world_data" type="text" id="hello_world_data"
  11. value="<?php echo get_option('hello_world_data'); ?>" />
  12.  
  13.  
  14. <p>
  15. <input type="submit" value="<?php _e('Save Changes') ?>" />
  16. </p>
  17.  
  18. </form>
  19. </div>
  20. <?php
  21. }
  22. add_action('wp_footer','newsletter');
  23.  
  24. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement