content-top.php 640 B

12345678910111213
  1. <?php
  2. $lodestar_header_top_text_1 = get_theme_mod( 'lodestar_header_top_text_1' );
  3. $lodestar_header_top_text_2 = get_theme_mod( 'lodestar_header_top_text_2' );
  4. if ( ( ! empty( $lodestar_header_top_text_1 ) || ! empty( $lodestar_header_top_text_2 ) ) || is_customize_preview() ) : ?>
  5. <div class="site-top-content">
  6. <?php
  7. echo '<span class="site-top-content-1">' . wp_kses_post( $lodestar_header_top_text_1 ) . '</span>';
  8. if ( ! empty( $lodestar_header_top_text_2 ) || is_customize_preview() ) {
  9. echo '<span class="site-top-content-2">' . wp_kses_post( $lodestar_header_top_text_2 ) . '</span>';
  10. } ?>
  11. </div>
  12. <?php endif; ?>