Skip to content

Instantly share code, notes, and snippets.

@bigredboots
bigredboots / gist:279e27eeffc120534affd77b3730175c
Last active December 29, 2017 19:07
not working custom category infinite scroll
<?php
function be_load_it_js() {
$query = array(
'post__not_in' => array( get_queried_object_id() ),
'category_name' => ea_first_term( 'category', 'slug' ),
'posts_per_page' => 3
);
$args = array(
'url' => admin_url( 'admin-ajax.php' ),