text-main.php 413 B

1234567891011121314
  1. <?php
  2. if ( ! get_option( 'vamtam_last_import_map' ) ) {
  3. return;
  4. }
  5. $header_text_main = rd_vamtam_get_option( 'header-text-main' );
  6. $has_header_text_main = ! ( ctype_space( $header_text_main ) || ! strlen( $header_text_main ) );
  7. ?>
  8. <?php if ( $has_header_text_main || is_customize_preview() ) : ?>
  9. <div id="header-text"><div>
  10. <?php echo do_shortcode( $header_text_main ) ?>
  11. </div></div>
  12. <?php endif ?>