Changeset 2984070
- Timestamp:
- 10/25/2023 10:22:02 PM (2 years ago)
- Location:
- ajax-load-more-anything
- Files:
-
- 26 added
- 2 edited
-
tags/3.3.2 (added)
-
tags/3.3.2/README.md (added)
-
tags/3.3.2/README.txt (added)
-
tags/3.3.2/admin (added)
-
tags/3.3.2/admin/Menu.php (added)
-
tags/3.3.2/admin/assets (added)
-
tags/3.3.2/admin/assets/css (added)
-
tags/3.3.2/admin/assets/css/admin.css (added)
-
tags/3.3.2/admin/assets/js (added)
-
tags/3.3.2/admin/assets/js/admin.js (added)
-
tags/3.3.2/admin/functions.php (added)
-
tags/3.3.2/ajax-load-div.php (added)
-
tags/3.3.2/appsero (added)
-
tags/3.3.2/appsero/src (added)
-
tags/3.3.2/appsero/src/Client.php (added)
-
tags/3.3.2/appsero/src/Insights.php (added)
-
tags/3.3.2/assets (added)
-
tags/3.3.2/assets/css (added)
-
tags/3.3.2/assets/css/styles.css (added)
-
tags/3.3.2/assets/js (added)
-
tags/3.3.2/assets/js/scripts.js (added)
-
tags/3.3.2/inc (added)
-
tags/3.3.2/inc/ald-functions.php (added)
-
tags/3.3.2/inc/class-admin-notice.php (added)
-
tags/3.3.2/languages (added)
-
tags/3.3.2/languages/ajax-load-more-anything.pot (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/ajax-load-div.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ajax-load-more-anything/trunk/README.txt
r2893157 r2984070 3 3 Tags: infinite scroll, ajax load more, load more, endless scroll, ajax pagination, ajax load, ajax comments, woocommerce ajax 4 4 Requires at least: 4.6 5 Tested up to: 6. 25 Tested up to: 6.3 6 6 Requires PHP: 5.6 7 Stable tag: 3.3. 17 Stable tag: 3.3.2 8 8 License: GPLv3 9 9 License URI: https://opensource.org/licenses/GPL-3.0 … … 171 171 == Changelog == 172 172 173 = 3.3.2 - Oct 26, 2023 = 174 - Tested up to: 6.3 175 173 176 = 3.3.1 - Apr 04, 2023 = 174 177 - Tested up to: 6.2 -
ajax-load-more-anything/trunk/ajax-load-div.php
r2893157 r2984070 5 5 * Author: Addon Master 6 6 * Author URI: https://addonmaster.com/contact 7 * Version: 3.3. 17 * Version: 3.3.2 8 8 * Description: A simple plugin that help you to Load more any item with jQuery/Ajax. You can use Ajaxify Load More button for your blog post, Comments, page, Category, Recent Posts, Sidebar widget Data, Woocommerce Product, Images, Photos, Videos, custom selector or whatever you want. 9 9 * License: GPL2 … … 28 28 29 29 if ( !defined('ALD_PLUGIN_VERSION') ) { 30 define('ALD_PLUGIN_VERSION', '3.3. 1' );30 define('ALD_PLUGIN_VERSION', '3.3.2' ); 31 31 } 32 32 … … 49 49 // trigger upon plugin activation/deactivation 50 50 register_activation_hook( __FILE__, array( $this, 'plugin_activation' ) ); 51 //register_deactivation_hook( __FILE__, array( $this, 'plugin_deactivation' ) );52 51 53 52 // Action link … … 79 78 require_once( dirname( __FILE__ ) . '/admin/functions.php' ); 80 79 require_once( dirname( __FILE__ ) . '/admin/Menu.php' ); 81 82 80 } 83 81 … … 107 105 update_option( 'ald_installed', time() ); 108 106 update_option( 'ald_plugin_version', ALD_PLUGIN_VERSION ); 109 }110 111 /**112 * Plugin Deactivation113 */114 function plugin_deactivation() {115 116 107 } 117 108 … … 166 157 ajax_load_more_anything(); 167 158 168 169 159 /** 170 160 * Initialize the plugin tracker … … 184 174 185 175 } 186 187 176 appsero_init_tracker_ajax_load_more_anything();
Note: See TracChangeset
for help on using the changeset viewer.