conditional statement for home page
-
Hi
I have a site using a theme that has a slider on every page based on featured posts (Papyrus theme). I just want the slider on the home page. Could someone help me write the conditional statement.In the theme’s header.php file there is the following:
<!– Featured section starts here –>
<div id=”featured_section”>
<?php get_template_part( ‘featured’, ‘posts’ ); ?>
</div>
<!– Featured section ends here –>Would I put:
if is_front_page()
<div id=”featured_section”>
<?php get_template_part( ‘featured’, ‘posts’ ); ?>
</div>
….How would the else… statement go if I don’t want anything there in that space on all other pages. Slider only on home page.
Using WP 3.5Thank you for your help.
- The topic ‘conditional statement for home page’ is closed to new replies.