Hello,
A new issue. The featured slider doesn’t show even when pages are created with a featured and tagged with ‘featured’. It seems that the homepage template (front-page.php) isn’t even supposed to show the slider? Code as below:
<?php
/**
* Template Name: Front-page
*
* @package CarListings
*/
if ( ‘posts’ === get_option( ‘show_on_front’ ) ) {
get_template_part( ‘index’ );
return;
}
get_header();
get_template_part( ‘template-parts/home/search-form’ );
get_template_part( ‘template-parts/home/cars-by-make’ );
get_template_part( ‘template-parts/home/listings’ );
get_footer();
I’m thinking the template part isn’t even being called at all?
Advise.