Plugin Directory

Changeset 2984070


Ignore:
Timestamp:
10/25/2023 10:22:02 PM (2 years ago)
Author:
mdshuvo
Message:

3.3.2 - Oct 26, 2023

  • Tested up to: 6.3
Location:
ajax-load-more-anything
Files:
26 added
2 edited

Legend:

Unmodified
Added
Removed
  • ajax-load-more-anything/trunk/README.txt

    r2893157 r2984070  
    33Tags: infinite scroll, ajax load more, load more, endless scroll, ajax pagination, ajax load, ajax comments, woocommerce ajax
    44Requires at least: 4.6
    5 Tested up to: 6.2
     5Tested up to: 6.3
    66Requires PHP: 5.6
    7 Stable tag: 3.3.1
     7Stable tag: 3.3.2
    88License: GPLv3
    99License URI: https://opensource.org/licenses/GPL-3.0
     
    171171== Changelog ==
    172172
     173= 3.3.2 - Oct 26, 2023 =
     174- Tested up to: 6.3
     175
    173176= 3.3.1 - Apr 04, 2023 =
    174177- Tested up to: 6.2
  • ajax-load-more-anything/trunk/ajax-load-div.php

    r2893157 r2984070  
    55 * Author:       Addon Master
    66 * Author URI:   https://addonmaster.com/contact
    7  * Version:      3.3.1
     7 * Version:      3.3.2
    88 * 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.
    99 * License:      GPL2
     
    2828
    2929if ( !defined('ALD_PLUGIN_VERSION') ) {
    30     define('ALD_PLUGIN_VERSION', '3.3.1' );
     30    define('ALD_PLUGIN_VERSION', '3.3.2' );
    3131}
    3232
     
    4949        // trigger upon plugin activation/deactivation
    5050        register_activation_hook( __FILE__, array( $this, 'plugin_activation' ) );
    51         //register_deactivation_hook( __FILE__, array( $this, 'plugin_deactivation' ) );
    5251
    5352        // Action link
     
    7978        require_once( dirname( __FILE__ ) . '/admin/functions.php' );
    8079        require_once( dirname( __FILE__ ) . '/admin/Menu.php' );
    81 
    8280    }
    8381
     
    107105        update_option( 'ald_installed', time() );
    108106        update_option( 'ald_plugin_version', ALD_PLUGIN_VERSION );
    109     }
    110 
    111     /**
    112      *  Plugin Deactivation
    113      */
    114     function plugin_deactivation() {
    115 
    116107    }
    117108
     
    166157ajax_load_more_anything();
    167158
    168 
    169159/**
    170160 * Initialize the plugin tracker
     
    184174
    185175}
    186 
    187176appsero_init_tracker_ajax_load_more_anything();
Note: See TracChangeset for help on using the changeset viewer.