PHP include is only working in certain places in my custom WP theme

Hello CandyPaintedRIMS,

Please try get_template_part() function to include any file into your custom template.

Your code:

<?php include('header-bar.php'); ?>

It should be replaced with:

<?php get_template_part( 'header-bar' ); // include header-bar.php ?>

Hope this will helps you.

Thank you