Changeset 1460605
- Timestamp:
- 07/26/2016 06:36:57 AM (10 years ago)
- Location:
- wp-super-speed/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wp-super-speed.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-super-speed/trunk/readme.txt
r1454235 r1460605 67 67 = 1.1 = 68 68 * Delete unused post meta and optimise database. 69 = 1.2 = 70 * Resolve conflicts with WP Super Sonic Admin Panel 69 71 70 72 == Upgrade Notice == … … 73 75 = 1.1 = 74 76 * Delete unused post meta and optimise database. 77 = 1.2 = 78 * Resolve conflicts with WP Super Sonic Admin Panel -
wp-super-speed/trunk/wp-super-speed.php
r1454235 r1460605 3 3 Plugin Name: WP Super Speed 4 4 Description: This powerful plugin dramatically reducing CPU and RAM utilazation by 70-80%. Just install and activate it and in return get an optimized and speedy version of your website backend as well as front end. Surely you’ll find a difference due to its presence. 5 Version: 1. 15 Version: 1.2 6 6 Author: Bhavinder Singh 7 7 License: GPL2 … … 11 11 } 12 12 13 function WPSS_activate() {13 function wpsuperspeed_activate() { 14 14 15 15 global $wpdb; … … 45 45 } 46 46 // run the install scripts upon plugin activation 47 register_activation_hook(__FILE__,' WPSS_activate');47 register_activation_hook(__FILE__,'wpsuperspeed_activate'); 48 48 49 49 50 add_action('admin_menu', ' WPSS_menu');51 function WPSS_menu() {52 add_menu_page('WP Super Speed', 'WP Super Speed', 'administrator', 'wps s', 'wpss_page', 'dashicons-admin-generic');50 add_action('admin_menu', 'wpsuperspeed_menu'); 51 function wpsuperspeed_menu() { 52 add_menu_page('WP Super Speed', 'WP Super Speed', 'administrator', 'wpsuperspeed', 'wpsuperspeed_page', 'dashicons-admin-generic'); 53 53 } 54 54 55 function wps s_page() {55 function wpsuperspeed_page() { 56 56 ?> 57 57 <div class="wrap">
Note: See TracChangeset
for help on using the changeset viewer.