PHP file not loading
Hi I had created a seperate php page with name frontbottomwidgets.php in my child theme, it has some content and a widget area. now i want to load this page on front page only. Ok I had tried with the below code.
The below code is placed in wrapper.php file
Code:
<?php if( is_front_page() ) : ?>
<?php get_template_part( 'frontbottomwidgets' ); ?>
<?php endif; ?>
at below of this div
Code:
<div id="main">
<?php load_template( app_template_path() ); ?>
</div> <!-- #main -->
Now it will not loading output.
When placing this code above of main ID div it will loading or when removing the front page condition and placed any where it will loading again.
But i want load only below of main div and in front page only, how?