Guest User

Untitled

a guest
Mar 21st, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <!-- Logo goes here -->
  2. <div class="container">
  3. <div class="row"><?php $elitepress_lite_options=theme_data_setup();
  4. $current_options = wp_parse_args( get_option( 'elitepress_lite_options', array() ), $elitepress_lite_options );
  5. if($current_options['logo_section_settings']==true) { ?>
  6. <div class="site-logo">
  7. <h1><a href="<?php echo esc_url( home_url( '/' ) ); ?>">
  8. <?php
  9. if($current_options['text_title'] ==true)
  10. { echo "<div class=elegent_title_head>" . get_bloginfo( ). "</div>"; }
  11. if($current_options['upload_image_logo']!='')
  12. { ?>
  13. <img src="<?php echo esc_url($current_options['upload_image_logo']); ?>" style="height:<?php if($current_options['height']!='') { echo esc_html($current_options['height']); } else { "50"; } ?>px; width:<?php if($current_options['width']!='') { echo esc_html($current_options['width']); } else { "250"; } ?>px;" alt="logo" />
  14. <?php } else { ?>
  15. <img src="<?php echo WEBRITI_TEMPLATE_DIR_URI; ?>/images/logo5.png" class="img-responsive"/>
  16. <?php } ?>
  17. </a></h1>
  18. </div>
  19. </div>
  20. <?php } ?>
  21. </div>
  22. <!-- /Logo goes here -->
Add Comment
Please, Sign In to add comment