mambax7/extgallery

View on GitHub
assets/js/ml-slider/preview.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

define('WP_USE_THEMES', false);

require_once \dirname(__DIR__, 3) . '/wp-blog-header.php';

if (\Xmf\Request::hasVar('slider_id', 'GET') && (int)$_GET['slider_id'] > 0) {
    add_filter('show_admin_bar', '__return_false');
    remove_action('init', 'wp_admin_bar_init');

    $id = (int)$_GET['slider_id'];
    echo "<html style='margin-top: 0 !important'><head>";
    echo "</head><body style='overflow: hidden; margin: 0; padding: 0;'>";
    echo do_shortcode("[metaslider id={$id}]");
    wp_footer();
    echo '</body></html>';
}

exit();