/** * The template for displaying archive pages. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package Astra * @since 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } get_header(); ?>

Author name: Admin007

Shopping Cart
0
    0
    Your Cart
    Your cart is emptyReturn to Shop
    Scroll to Top
    ×
    jQuery(function($){ $('#load-more').on('click', function(){ var button = $(this), page = button.data('page'), newPage = page + 1, ajaxurl = button.data('url'); $.ajax({ url : ajaxurl, type : 'post', data : { page : page, action : 'load_more_products' }, success : function( response ) { $('#product-container').append( response ); // Append new products button.data('page', newPage); // Increment page } }); }); });