<?php get_header();$paged=max(1, get_query_var('paged'));$q=new WP_Query(['post_type'=>'post','posts_per_page'=>12,'paged'=>$paged,'category_name'=>'international-news',// IMPORTANT:must match your category slug 'post_status'=>'publish','no_found_rows'=>false,]);echo '<main class="bnno-archive" style="max-width:1100px;margin:0 auto;padding:20px;">';echo '<h1>International News</h1>';if ($q->have_posts()){echo '<div style="display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:18px;">';while ($q->have_posts()){$q->the_post();echo '<article style="border:1px solid #eee;border-radius:12px;padding:14px;">';if (has_post_thumbnail()){echo '<a href="'.esc_url(/wp-content/themes/gimont-child/get_permalink()).'">'.get_the_post_thumbnail(null,'medium',['style'=>'width:100%;height:auto;border-radius:10px;']).'</a>'}echo '<h2 style="font-size:18px;line-height:1.2;margin:10px 0;">';echo '<a href="'.esc_url(/wp-content/themes/gimont-child/get_permalink()).'" style="text-decoration:none;">'.esc_html(get_the_title()).'</a>';echo '</h2>';echo '<div style="font-size:13px;opacity:.75;margin-bottom:8px;">'.esc_html(get_the_date()).' • '.esc_html(get_the_author()).'</div>';echo '<p style="margin:0;">'.esc_html(wp_trim_words(get_the_excerpt(),24)).'</p>';echo '</article>'}echo '</div>';// Pagination echo '<div style="margin-top:22px;">';echo paginate_links(['total'=>$q->max_num_pages,'current'=>$paged]);echo '</div>';wp_reset_postdata()}else{echo '<p>No posts found in this category.</p>'}echo '</main>';get_footer();