HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ubuntu-s-2vcpu-4gb-amd-sfo3-01 6.8.0-71-generic #71-Ubuntu SMP PREEMPT_DYNAMIC Tue Jul 22 16:52:38 UTC 2025 x86_64
User: root (0)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /var/www/mentalhealthsteps.com/wp-content/themes/mentalhealthworld/template/health-topics.php
<?php
/*
** Template Name: Health Topics
*/ 
get_header(); ?>
<section class="health-detail-page">
    <div class="container">
        <div class="health-layout">

            <!-- LEFT SIDEBAR -->
            <aside class="health-sidebar">
                <h3>Health Topics</h3>

                <?php
                $topics = new WP_Query(array(
                    'post_type'      => 'health-topics',
                    'post_status'    => 'publish',
                    'posts_per_page' => -1,
                    'orderby'        => 'title',
                    'order'          => 'ASC',
                ));

                if ($topics->have_posts()) :
                    echo '<ul class="health-topic-list">';
                    while ($topics->have_posts()) : $topics->the_post();
                        $active_class = get_the_ID() == get_queried_object_id() ? 'active' : '';
                        ?>
                        <li class="<?php echo esc_attr($active_class); ?>">
                            <a href="<?php the_permalink(); ?>">
                                <?php the_title(); ?>
                            </a>
                        </li>
                        <?php
                    endwhile;
                    echo '</ul>';
                    wp_reset_postdata();
                endif;
                ?>
            </aside>

            <!-- MAIN CONTENT -->
            <main class="health-content">

                    <div class="breadcrumb-area">
                        <a href="<?php echo esc_url(home_url('/')); ?>">Home</a>
                        <span>/</span>
                        <a href="<?php echo esc_url(get_post_type_archive_link('health-topics')); ?>">Health Topics</a>
                        <span>/</span>
                        <strong><?php the_title(); ?></strong>
                    </div>

                    <h1><?php the_title(); ?></h1>

                    <?php if (has_post_thumbnail()) : ?>
                        <div class="health-featured-image">
                            <?php the_post_thumbnail('large'); ?>
                        </div>
                    <?php endif; ?>

                    <div class="health-post-content">
                        <?php the_content(); ?>
                    </div>
            </main>


        </div>
    </div>
</section>
<?php get_footer(); ?>