Changeset 1170656
- Timestamp:
- 05/29/2015 11:52:09 PM (11 years ago)
- Location:
- wpdelaycron
- Files:
-
- 2 edited
- 3 copied
-
tags/0.0.5 (copied) (copied from wpdelaycron/trunk)
-
tags/0.0.5/readme.txt (copied) (copied from wpdelaycron/trunk/readme.txt) (3 diffs)
-
tags/0.0.5/wpdelaycron.php (copied) (copied from wpdelaycron/trunk/wpdelaycron.php) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/wpdelaycron.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpdelaycron/tags/0.0.5/readme.txt
r1146584 r1170656 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.2 7 Stable tag: 0.0. 47 Stable tag: 0.0.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 22 22 e.g. 23 23 24 1. Upload ` plugin-name.php` to the `/wp-content/plugins/` directory24 1. Upload `wpdelaycron.php` to the `/wp-content/plugins/wpdelaycron/` directory 25 25 1. Activate the plugin through the 'Plugins' menu in WordPress 26 26 … … 37 37 page views occur. If you pick 10, then you will run the cron every 10 page views. 38 38 39 = Does this work with multi site installs? = 40 41 Yes. The options page will show up under each individual site, not in the network admin site. 42 39 43 == Screenshots == 40 44 41 45 == Changelog == 46 47 = 0.0.5 = 48 Fix multi site bug 49 50 = 0.0.4 = 51 Bug Fixes 52 53 = 0.0.3 = 54 Bug Fixes 42 55 43 56 = 0.0.2 = -
wpdelaycron/tags/0.0.5/wpdelaycron.php
r1146584 r1170656 7 7 * Plugin URI: http://www.cmagic.biz/wordpress/wpdelaycron/ 8 8 * Description: Prevent wordpress from running cron on each page view. 9 * Version: 0.0. 49 * Version: 0.0.5 10 10 * Author: Ray Pulsipher 11 11 * Author URI: http://cmagic.biz … … 41 41 if(is_multisite()) 42 42 { 43 add_action('network_admin_menu', 'wp_delaycron_admin_menus'); 44 } else { 45 add_action('admin_menu', 'wp_delaycron_admin_menus'); 43 //add_action('network_admin_menu', 'wp_delaycron_admin_menus'); 46 44 } 45 add_action('admin_menu', 'wp_delaycron_admin_menus'); 47 46 } 48 47 } -
wpdelaycron/trunk/readme.txt
r1146584 r1170656 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.2 7 Stable tag: 0.0. 47 Stable tag: 0.0.5 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 22 22 e.g. 23 23 24 1. Upload ` plugin-name.php` to the `/wp-content/plugins/` directory24 1. Upload `wpdelaycron.php` to the `/wp-content/plugins/wpdelaycron/` directory 25 25 1. Activate the plugin through the 'Plugins' menu in WordPress 26 26 … … 37 37 page views occur. If you pick 10, then you will run the cron every 10 page views. 38 38 39 = Does this work with multi site installs? = 40 41 Yes. The options page will show up under each individual site, not in the network admin site. 42 39 43 == Screenshots == 40 44 41 45 == Changelog == 46 47 = 0.0.5 = 48 Fix multi site bug 49 50 = 0.0.4 = 51 Bug Fixes 52 53 = 0.0.3 = 54 Bug Fixes 42 55 43 56 = 0.0.2 = -
wpdelaycron/trunk/wpdelaycron.php
r1146584 r1170656 7 7 * Plugin URI: http://www.cmagic.biz/wordpress/wpdelaycron/ 8 8 * Description: Prevent wordpress from running cron on each page view. 9 * Version: 0.0. 49 * Version: 0.0.5 10 10 * Author: Ray Pulsipher 11 11 * Author URI: http://cmagic.biz … … 41 41 if(is_multisite()) 42 42 { 43 add_action('network_admin_menu', 'wp_delaycron_admin_menus'); 44 } else { 45 add_action('admin_menu', 'wp_delaycron_admin_menus'); 43 //add_action('network_admin_menu', 'wp_delaycron_admin_menus'); 46 44 } 45 add_action('admin_menu', 'wp_delaycron_admin_menus'); 47 46 } 48 47 }
Note: See TracChangeset
for help on using the changeset viewer.