diff --git a/src/wp-admin/options.php b/src/wp-admin/options.php
index 8348b24c8e..7cbf7129c3 100644
|
a
|
b
|
require_once ABSPATH . 'wp-admin/admin-header.php'; |
| 395 | 395 | <input type="hidden" name="option_page" value="options" /> |
| 396 | 396 | <table class="form-table" role="presentation"> |
| 397 | 397 | <?php |
| 398 | | $options = $wpdb->get_results( "SELECT * FROM $wpdb->options ORDER BY option_name" ); |
| | 398 | $options = $wpdb->get_results( "SELECT * FROM $wpdb->options WHERE option_name REGEXP '^[^_site_transient_]+' ORDER BY option_name" ); |
| 399 | 399 | |
| 400 | 400 | foreach ( (array) $options as $option ) : |
| 401 | 401 | $disabled = false; |