Wordpress - If-Page
<!-- Using page name -->
<?php
if (is_page( 'Wine Investment')) {
get_template_part( 'carousel-wine-investment' );
}
?>
<!-- Using page id -->
<?php
if (is_page( 42 )) {
get_template_part( 'carousel-wine-investment' );
}
?>
<!-- Alternative syntax - Using page name -->
<?php if (is_page( 'Hearing Aids & Accessories') ):?>
<div class="slider">
<?php echo do_shortcode('[soliloquy id="437"]'); ?>
</div>
<?php endif; ?>
<!-- Alternative syntax - Using page id -->
<?php if (is_page( 42 )):?>
<div class="slider">
<?php echo do_shortcode('[soliloquy id="437"]'); ?>
</div>
<?php endif; ?>
<?php
if ( is_front_page() && is_home() ) {
// Default homepage
} elseif ( is_front_page() ) {
// static homepage
} elseif ( is_home() ) {
// blog page
} else {
//everything else
}
?>