/* ═══════════════════════════════════════════════════════════════ ARCHIVE PAGE OVERRIDE Makes https://ekostra.com/calculator/ render the modern grid menu ([calc_menu]) automatically instead of the theme's default archive loop. ═══════════════════════════════════════════════════════════════ */ add_action( 'template_redirect', 'cpm2_render_calculator_archive' ); function cpm2_render_calculator_archive() { if ( ! is_post_type_archive( 'calculator' ) ) return; $lang = cpm2_lang(); $title = $lang === 'ar' ? 'الحاسبات' : 'Calculators'; $subtitle = $lang === 'ar' ? 'تصفح جميع الحاسبات المتاحة، وابحث أو صنّف حسب النوع.' : 'Browse every calculator we offer — search or filter by category.'; get_header(); ?>

<?php get_footer(); exit; }