Changeset 551020
- Timestamp:
- 05/30/2012 06:49:17 PM (14 years ago)
- Location:
- lazy-content-slider/trunk
- Files:
-
- 2 edited
-
lzcs.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lazy-content-slider/trunk/lzcs.php
r550977 r551020 5 5 Description: This is a content slider that shows 5 slides from a "Featured Category" 6 6 Author: Lee Thompson 7 Version: 1. 17 Version: 1.2 8 8 Author URI: http://mysqlhow2.com 9 9 … … 26 26 add_action('admin_menu', 'lzcs_add_admin_menu'); 27 27 add_action('wp_enqueue_scripts', 'add_jscss'); 28 add_action('init', 'lzcs_init'); 28 register_activation_hook(__FILE__, 'lzcs_init'); 29 register_deactivation_hook(__FILE__, 'lzcs_deactivate'); 29 30 30 31 //set up lzcs plugin … … 63 64 } 64 65 add_filter('plugin_row_meta', 'lzcs_Plugin_Links',10,2); 66 } 67 68 function lzcs_deactivate() { 69 delete_option('lzcs_cat'); 65 70 } 66 71 -
lazy-content-slider/trunk/readme.txt
r550983 r551020 5 5 Requires at least: 2.9.2 6 6 Tested up to: 3.3.2 7 Stable tag: 1. 07 Stable tag: 1.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 51 51 52 52 == Frequently Asked Questions == 53 Just want to give shout out to Tim Garrison @ http://www.skudd.comwho helped with my looping and53 Just want to give shout out to Tim Garrison who helped with my looping and 54 54 webdeveloperplus with the great tutorial on the slider using jquery. 55 55 56 56 == Upgrade Notice == 57 = 1. 0=57 = 1.1 = 58 58 Initial Release 59 = 1.2 = 60 Added remove option from database when plugin deactivated. 59 61 60 62 == Changelog ==
Note: See TracChangeset
for help on using the changeset viewer.