Nessuna descrizione

cache.php 499B

1234567891011121314151617
  1. <?php if ( ! defined( 'ABSPATH' ) ) exit;
  2. global $wpdb;
  3. $count = $wpdb->get_var(
  4. "SELECT COUNT( option_id )
  5. FROM {$wpdb->options}
  6. WHERE option_name LIKE 'um_cache_userdata_%'"
  7. ); ?>
  8. <p><?php _e( 'Run this task from time to time to keep your DB clean.', 'ultimate-member' ) ?></p>
  9. <p>
  10. <a href="<?php echo esc_url( add_query_arg( 'um_adm_action', 'user_cache' ) ); ?>" class="button">
  11. <?php printf( __( 'Clear cache of %s users', 'ultimate-member' ), $count ) ?>
  12. </a>
  13. </p>