This Conditional Tag checks if the site is embedded in the Customizer preview iframe. This is a boolean function that will return true if the site is previewed in the Customizer and false if it's not.
<?php is_customize_preview(); ?>
This tag does not accept any parameters.
if ( is_customize_preview() ) { // Output a demo content }
Since: 4.0.0
is_customize_preview() is located in wp-includes/theme.php
.