Uname: Linux premium294.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
Software: LiteSpeed
PHP version: 8.1.32 [ PHP INFO ] PHP os: Linux
Server Ip: 104.21.96.1
Your Ip: 216.73.216.223
User: mjbynoyq (1574) | Group: mjbynoyq (1570)
Safe Mode: OFF
Disable Function:
NONE

name : alter-html.php
<?php

if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

function webPExpressAlterHtml($content) {
    // Don't do anything with the RSS feed.
    if (is_feed()) {
        return $content;
    }

    if (get_option('webp-express-alter-html-replacement') == 'picture') {
        if(function_exists('is_amp_endpoint') && is_amp_endpoint()) {
            //for AMP pages the <picture> tag is not allowed
            return $content;
        }
        /*if (is_admin() ) {
            return $content;
        }*/
        require_once __DIR__ . '/classes/AlterHtmlPicture.php';
        return \WebPExpress\AlterHtmlPicture::alter($content);
    } else {
        require_once __DIR__ . '/classes/AlterHtmlImageUrls.php';
        return \WebPExpress\AlterHtmlImageUrls::alter($content);

    }
}

function webpExpressOutputBuffer() {
    if (!is_admin() || (function_exists("wp_doing_ajax") && wp_doing_ajax()) || (defined( 'DOING_AJAX' ) && DOING_AJAX)) {
        ob_start('webPExpressAlterHtml');
    }
}

function webpExpressAddPictureJs() {
    // Don't do anything with the RSS feed.
    // - and no need for PictureJs in the admin
    if ( is_feed() || is_admin() ) { return; }

    echo '<script>'
       . 'document.createElement( "picture" );'
       . 'if(!window.HTMLPictureElement && document.addEventListener) {'
            . 'window.addEventListener("DOMContentLoaded", function() {'
                . 'var s = document.createElement("script");'
                . 's.src = "' . plugins_url('/js/picturefill.min.js', __FILE__) . '";'
                . 'document.body.appendChild(s);'
            . '});'
        . '}'
       . '</script>';
}


if (get_option('webp-express-alter-html-replacement') == 'picture') {
    add_action( 'wp_head', 'webpExpressAddPictureJs');
}

if (get_option('webp-express-alter-html-hooks', 'ob') == 'ob') {
    /* TODO:
       Which hook should we use, and should we make it optional?
       - Cache enabler uses 'template_redirect'
       - ShortPixes uses 'init'

       We go with template_redirect now, because it is the "innermost".
       This lowers the risk of problems with plugins used rewriting URLs to point to CDN.
       (We need to process the output *before* the other plugin has rewritten the URLs,
        if the "Only for webps that exists" feature is enabled)
    */
    add_action( 'init', 'webpExpressOutputBuffer', 1 );
    //add_action( 'template_redirect', 'webpExpressOutputBuffer', 1 );

} else {
    add_filter( 'the_content', 'webPExpressAlterHtml', 10000 ); // priority big, so it will be executed last
    add_filter( 'the_excerpt', 'webPExpressAlterHtml', 10000 );
    add_filter( 'post_thumbnail_html', 'webPExpressAlterHtml');
}

//echo wp_doing_ajax() ? 'ajax' : 'no ajax'; exit;
//echo is_feed() ? 'feed' : 'no feed'; exit;
© 2025 XylotrechusZ