Breaking headlines, Indian politics news, tech updates today, viral news India, trending social media stories, daily world news, entertainment buzz, Bollywood breaking, sports updates, finance news, economy trends.
Test Post for WordPress - NationNews Test Post for WordPress — NationNews
This website uses cookies to improve your experience. We'll assume you're ok with this, but you can opt-out if you wish. Accept Read More
error: Content is protected !!
/* ========================================================
NATIONNEWS PRO LOAD MORE - FIXED + CLEAN JSON RESPONSE
======================================================== */ add_action('wp_ajax_nationnews_load_more', 'nationnews_load_more');
add_action('wp_ajax_nopriv_nationnews_load_more', 'nationnews_load_more'); function nationnews_load_more() { // Secure nonce check
if ( ! isset($_POST['nonce']) || ! wp_verify_nonce($_POST['nonce'], 'nn_load_more_nonce') ) {
wp_send_json_error(['msg' => 'invalid_nonce']);
} $paged = (int) $_POST['page'] + 1;
$cat = isset($_POST['cat']) ? (int) $_POST['cat'] : 0; // Build query
$args = [
'post_type' => 'post',
'post_status' => 'publish',
'paged' => $paged,
'ignore_sticky_posts' => 1,
]; if ($cat !== 0) {
$args['cat'] = $cat;
} $query = new WP_Query($args); ob_start(); // ← capture HTML cleanly if ($query->have_posts()):
while ($query->have_posts()): $query->the_post();
get_template_part('template-parts/content', get_post_format());
endwhile;
endif; wp_reset_postdata(); $html = ob_get_clean(); wp_send_json_success([
'html' => $html,
'next' => $paged
]);
}