header.php 842 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Outputs the green MonsterInsights Header
  4. *
  5. * @since 6.0.0
  6. *
  7. * @package MonsterInsights
  8. * @subpackage Settings
  9. * @author Chris Christoff
  10. */
  11. // Exit if accessed directly
  12. if ( ! defined( 'ABSPATH' ) ) {
  13. exit;
  14. }
  15. ?>
  16. <div id="monsterinsights-header-temp"></div>
  17. <div id="monsterinsights-header" class="monsterinsights-header">
  18. <img class="monsterinsights-header-title" src="<?php echo esc_attr( $data['logo'] ); ?>" srcset="<?php echo esc_attr( $data['2xlogo'] ); ?> 2x" alt="<?php esc_attr__( 'MonsterInsights', 'google-analytics-for-wordpress' ); ?>"/>
  19. <img class="monsterinsights-header-mascot" src="<?php echo esc_attr( $data['mascot'] ); ?>" srcset="<?php echo esc_attr( $data['2xmascot'] ); ?> 2x" alt="<?php esc_attr__( 'MonsterInsights Mascot', 'google-analytics-for-wordpress' ); ?>"/>
  20. </div>