Changeset 2046678
- Timestamp:
- 03/08/2019 03:42:17 PM (7 years ago)
- Location:
- wp-admin-cache/trunk
- Files:
-
- 2 edited
-
index.php (modified) (2 diffs)
-
readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-admin-cache/trunk/index.php
r2046219 r2046678 1 1 <?php 2 2 /* 3 Plugin Name: W pAdmin Cache3 Plugin Name: WP Admin Cache 4 4 Plugin URI: https://www.wpadmincache.com 5 5 Description: The first cache plugin for WordPress admin area … … 34 34 35 35 function init(){ 36 add_options_page( 'W p Admin Cache', 'WpAdmin Cache', 'manage_options', 'wp-admin-cache', array($this,'options_page') );36 add_options_page( 'WP Admin Cache', 'WP Admin Cache', 'manage_options', 'wp-admin-cache', array($this,'options_page') ); 37 37 wp_enqueue_script( 'wp-admin-cache-script', plugin_dir_url( __FILE__ ).'index.js' ); 38 38 wp_enqueue_style('wp-admin-cache-style', plugin_dir_url( __FILE__ ).'index.css'); -
wp-admin-cache/trunk/readme.txt
r2046219 r2046678 1 === W pAdmin Cache ===1 === WP Admin Cache === 2 2 Contributors: grfstudio 3 3 Tags: admin cache, admin performance, admin speed … … 5 5 Requires PHP: 5.6 6 6 Requires at least: 4.6 7 Tested up to: 5. 07 Tested up to: 5.1 8 8 License: GPLv2 or later 9 9 … … 12 12 == Description == 13 13 14 This customizable plugin caches the most visited pages in the admin area; it uses ajax to prefetch the pages and stores them on the server for each user. 14 This lightweight plugin caches the most visited pages in the admin area; it uses ajax to prefetch the pages and stores them on the server for each user. 15 The plugin is useful for sites with many installed plugins, which often make the administrative section very slow. 15 16 16 17 == Installation == … … 31 32 1. Upload the plugin files to the `/wp-content/plugins/wp-admin-cache` directory, or install the plugin through the WordPress plugins screen directly. 32 33 2. Activate the plugin through the 'Plugins' menu in WordPress. 33 3. Go to Settings > W pAdmin Cache34 3. Go to Settings > WP Admin Cache 34 35 4. Check "Cache enabled" to activate the cache. 35 36 5. Choose which pages are to be cached.
Note: See TracChangeset
for help on using the changeset viewer.