Advertisement
Guest User

layout-copyright-light.php

a guest
Jan 12th, 2017
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. <footer class="footer-widget bg-white p0">
  2. <?php if ( 'yes' == get_option( 'roneous_enable_copyright', 'yes' ) ) : ?>
  3. <div class="large-container sub-footer">
  4. <div class="row">
  5. <div class="col-sm-6">
  6. <span class="sub">
  7. <?php echo wp_kses(htmlspecialchars_decode( get_option( 'roneous_footer_copyright', esc_html__( 'Modify this text in: Appearance > Customize > Footer', 'roneous' ) )), roneous_allowed_tags()); ?>
  8. </span>
  9. </div>
  10. <div class="col-sm-6 text-right">
  11. <?php
  12. $header_mobile = get_option('roneous_header_mobile', esc_html__( '+0123456789', 'roneous' ) );
  13. $header_email = get_option('roneous_header_email', esc_html__( '[email protected]', 'roneous' ) );
  14. ?>
  15. <?php if( $header_mobile ) : ?>
  16. <i class="ti-mobile" style="padding-right: 5px;">&nbsp;</i>
  17. <span class="sub" style="padding-right: 5px;"><?php echo wp_kses($header_mobile, roneous_allowed_tags()); ?></span>
  18. <?php endif; ?>
  19. <?php if( $header_email ) : ?>
  20. <i class="ti-email" style="padding-right: 5px;">&nbsp;</i>
  21. <span class="sub"><?php echo wp_kses($header_email, roneous_allowed_tags()); ?></span>
  22. <?php endif; ?>
  23. </div>
  24. </div>
  25. </div>
  26. <?php endif; ?>
  27. </footer>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement