HEX
Server: LiteSpeed
System: Linux s882.use1.mysecurecloudhost.com 4.18.0-553.27.1.lve.el8.x86_64 #1 SMP Fri Nov 8 15:09:45 UTC 2024 x86_64
User: airservicecom (4307)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: /home/airservicecom/public_html/wp-content/themes/air-service/includes/theme-shortcodes.php
<?php
/**
 * Logo shortcode, place <svg> or <img> shortcode here, prefer SVG if logo is available in that format, it's not too heavy and it doens't include raster images in it. If those requeriments are not met fallback to a img element, use loading='lazy' and set alt equal to bloginfo( 'name' )
 */
add_shortcode( 'logo', function() {
    ob_start();
    ?>
        <img src="<?php echo avia_get_option( 'logo' ); ?>">
    <?php
    return ob_get_clean();
} );

add_shortcode( 'logo_alternate', function() {
    ob_start();
    ?>
    
    <?php
    return ob_get_clean();
} );