googleanalytics
Last commit date
class
9 years ago
css
9 years ago
js
9 years ago
lib
9 years ago
overwrite
9 years ago
view
9 years ago
LICENSE
9 years ago
googleanalytics.php
9 years ago
options.php
9 years ago
readme.txt
9 years ago
screenshot-1.png
9 years ago
screenshot-2.png
9 years ago
screenshot-3.png
9 years ago
screenshot-4.png
9 years ago
screenshot-5.png
9 years ago
options.php
27 lines
| 1 | <div class="wrap"> |
| 2 | <h2>Google Analytics</h2> |
| 3 | |
| 4 | <form method="post" action="options.php"> |
| 5 | <?php wp_nonce_field('update-options'); ?> |
| 6 | <?php settings_fields('googleanalytics'); ?> |
| 7 | |
| 8 | <table class="form-table"> |
| 9 | |
| 10 | <tr valign="top"> |
| 11 | <th scope="row">Web Property ID:</th> |
| 12 | <td><input type="text" name="web_property_id" value="<?php echo get_option('web_property_id'); ?>" /></td> |
| 13 | </tr> |
| 14 | |
| 15 | </tr> |
| 16 | |
| 17 | </table> |
| 18 | |
| 19 | <input type="hidden" name="action" value="update" /> |
| 20 | |
| 21 | <p class="submit"> |
| 22 | <input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" /> |
| 23 | </p> |
| 24 | |
| 25 | </form> |
| 26 | </div> |
| 27 |