Plugin Directory

Changeset 1170656


Ignore:
Timestamp:
05/29/2015 11:52:09 PM (11 years ago)
Author:
computermagic
Message:

tagging version 0.0.5

Location:
wpdelaycron
Files:
2 edited
3 copied

Legend:

Unmodified
Added
Removed
  • wpdelaycron/tags/0.0.5/readme.txt

    r1146584 r1170656  
    55Requires at least: 3.0.1
    66Tested up to: 4.2
    7 Stable tag: 0.0.4
     7Stable tag: 0.0.5
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2222e.g.
    2323
    24 1. Upload `plugin-name.php` to the `/wp-content/plugins/` directory
     241. Upload `wpdelaycron.php` to the `/wp-content/plugins/wpdelaycron/` directory
    25251. Activate the plugin through the 'Plugins' menu in WordPress
    2626
     
    3737page views occur. If you pick 10, then you will run the cron every 10 page views.
    3838
     39= Does this work with multi site installs? =
     40
     41Yes. The options page will show up under each individual site, not in the network admin site.
     42
    3943== Screenshots ==
    4044
    4145== Changelog ==
     46
     47= 0.0.5 =
     48Fix multi site bug
     49
     50= 0.0.4 =
     51Bug Fixes
     52
     53= 0.0.3 =
     54Bug Fixes
    4255
    4356= 0.0.2 =
  • wpdelaycron/tags/0.0.5/wpdelaycron.php

    r1146584 r1170656  
    77 * Plugin URI: http://www.cmagic.biz/wordpress/wpdelaycron/
    88 * Description: Prevent wordpress from running cron on each page view.
    9  * Version: 0.0.4
     9 * Version: 0.0.5
    1010 * Author: Ray Pulsipher
    1111 * Author URI: http://cmagic.biz
     
    4141        if(is_multisite())
    4242        {
    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');
    4644        }
     45        add_action('admin_menu', 'wp_delaycron_admin_menus');
    4746    }
    4847}
  • wpdelaycron/trunk/readme.txt

    r1146584 r1170656  
    55Requires at least: 3.0.1
    66Tested up to: 4.2
    7 Stable tag: 0.0.4
     7Stable tag: 0.0.5
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2222e.g.
    2323
    24 1. Upload `plugin-name.php` to the `/wp-content/plugins/` directory
     241. Upload `wpdelaycron.php` to the `/wp-content/plugins/wpdelaycron/` directory
    25251. Activate the plugin through the 'Plugins' menu in WordPress
    2626
     
    3737page views occur. If you pick 10, then you will run the cron every 10 page views.
    3838
     39= Does this work with multi site installs? =
     40
     41Yes. The options page will show up under each individual site, not in the network admin site.
     42
    3943== Screenshots ==
    4044
    4145== Changelog ==
     46
     47= 0.0.5 =
     48Fix multi site bug
     49
     50= 0.0.4 =
     51Bug Fixes
     52
     53= 0.0.3 =
     54Bug Fixes
    4255
    4356= 0.0.2 =
  • wpdelaycron/trunk/wpdelaycron.php

    r1146584 r1170656  
    77 * Plugin URI: http://www.cmagic.biz/wordpress/wpdelaycron/
    88 * Description: Prevent wordpress from running cron on each page view.
    9  * Version: 0.0.4
     9 * Version: 0.0.5
    1010 * Author: Ray Pulsipher
    1111 * Author URI: http://cmagic.biz
     
    4141        if(is_multisite())
    4242        {
    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');
    4644        }
     45        add_action('admin_menu', 'wp_delaycron_admin_menus');
    4746    }
    4847}
Note: See TracChangeset for help on using the changeset viewer.