77 * Author: Darren Cooney
88 * Twitter: @KaptonKaos
99 * Author URI: https://connekthq.com
10- * Version: 7.4.1
10+ * Version: 7.4.2
1111 * License: GPL
1212 * Copyright: Darren Cooney & Connekt Media
1313 *
1414 * @package AjaxLoadMore
1515 */
1616
17- define ( 'ALM_VERSION ' , '7.4.1 ' );
18- define ( 'ALM_RELEASE ' , 'June 6 , 2025 ' );
17+ define ( 'ALM_VERSION ' , '7.4.2 ' );
18+ define ( 'ALM_RELEASE ' , 'June 10 , 2025 ' );
1919define ( 'ALM_STORE_URL ' , 'https://connekthq.com ' );
2020
2121require_once plugin_dir_path ( __FILE__ ) . 'core/functions/install.php ' ;
@@ -68,6 +68,7 @@ public function __construct() {
6868 add_action ( 'wp_ajax_nopriv_alm_get_posts ' , [ $ this , 'alm_query_posts ' ] );
6969 add_action ( 'wp_enqueue_scripts ' , [ $ this , 'alm_enqueue_scripts ' ] );
7070 add_action ( 'after_setup_theme ' , [ $ this , 'alm_image_sizes ' ] );
71+ add_action ( 'init ' , [ $ this , 'alm_load_text_domain ' ] );
7172
7273 add_filter ( 'alm_noscript ' , [ $ this , 'alm_noscript ' ], 10 , 6 );
7374 add_filter ( 'alm_noscript_pagination ' , [ $ this , 'alm_noscript_pagination ' ], 10 , 3 );
@@ -76,7 +77,6 @@ public function __construct() {
7677 add_filter ( 'widget_text ' , 'do_shortcode ' );
7778
7879 add_shortcode ( 'ajax_load_more ' , [ $ this , 'alm_shortcode ' ] );
79- add_shortcode ( 'init ' , [ $ this , 'alm_load_text_domain ' ] );
8080 }
8181
8282 /**
0 commit comments