/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
function disable_lazy_loading_on_first_image($content) {
    static $first_image = true;
    if ($first_image) {
        $content = preg_replace('/loading="lazy"/', '', $content, 1);
        $first_image = false;
    }
    return $content;
}
add_filter('the_content', 'disable_lazy_loading_on_first_image');
