<?php
/*
* Template Name: Hybrid Batteries Page
* Description: A custom template for showcasing hybrid batteries.
*/

get_header(); ?>

<div id=”primary” class=”content-area”>
<main id=”main” class=”site-main”>

<section class=”intro-section”>
<div class=”container”>
<h1><?php the_title(); ?></h1>
<div class=”page-content”>
<?php the_content(); ?>
</div>
</div>
</section>

<section class=”battery-list-section”>
<div class=”container”>
<h2>Battery Products</h2>

<?php
$args = array(
‘post_type’ => ‘battery’, // Replace with your custom post type name
‘posts_per_page’ => -1,
);

$battery_query = new WP_Query($args);

if ($battery_query->have_posts()) :
while ($battery_query->have_posts()) :
$battery_query->the_post();
?>
<article class=”battery-item”>
<h3><?php the_title(); ?></h3>
<div class=”battery-content”>
<?php the_content(); ?>
</div>
</article>
<?php
endwhile;
wp_reset_postdata();
else :
echo ‘No batteries found.’;
endif;
?>
</div>
</section>

</main><!– #main –>
</div><!– #primary –>

<?php get_footer(); ?>