| Server IP : 54.36.91.62 / Your IP : 216.73.216.15 Web Server : Apache System : Linux webm021.cluster127.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : uxhactp ( 169076) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/u/x/h/uxhactp/www/wp-content/themes/applica/inc/ |
Upload File : |
<?php
if ( ! function_exists( 'applica_ajax_pagination' ) ) :
/**
* Outputs the required structure for ajax loading posts on scroll and click
*
* @since 1.0.0
* @param $type string Ajax Load Type
*/
function applica_ajax_pagination($type) {
global $wp_query;
if ( $wp_query->max_num_pages > 1 ) {
?>
<div class="applica-load-posts-btn-wrapper"
data-page="1"
data-max-pages="<?php echo esc_attr($wp_query->max_num_pages);?>"
data-load-type="<?php echo esc_attr($type);?>"
>
<a href="#" class="">
<span class="applica-ajax-loader"></span>
<button class="load-btn"><?php _e('Load More', 'applica') ?></button>
</a>
</div>
<?php
}
}
endif;
if ( ! function_exists( 'applica_load_posts' ) ) :
/**
* Ajax Load posts Callback.
*
* @since 1.0.0
*
*/
function applica_load_posts() {
check_ajax_referer( 'applica-load-posts-nonce', 'nonce' );
$query_vars = json_decode( stripslashes( $_POST['query_vars'] ), true );
$query_vars['post_type'] = ( isset( $_POST['post_type']) && !empty($_POST['post_type'] ) ) ? esc_attr( $_POST['post_type'] ) : 'post';
$query_vars['paged'] = (int) $_POST['page'];
$query_vars['post_status'] = 'publish';
$posts = new WP_Query( $query_vars );
if($posts->have_posts()):
ob_start();
$archive_style = $_POST['template'];
set_query_var( 'archive_style', $archive_style );
// Load a different template for search page else load archive template
$template_part = ( isset($query_vars['s']) && !empty($query_vars['s']) )? 'search' : 'archive';
while($posts->have_posts()):$posts->the_post();
get_template_part('template-parts/content', $template_part);
endwhile;wp_reset_postdata();
$output['content'][] = ob_get_clean();
wp_send_json_success($output);
else:
$error = new WP_Error( '500', __('No More Posts','applica') );
wp_send_json_error( $error );
endif;
wp_die();
}
endif;
add_action( 'wp_ajax_applica_load_posts', 'applica_load_posts' );
add_action( 'wp_ajax_nopriv_applica_load_posts', 'applica_load_posts' );