HEX
Server: Apache
System: Linux 66-116-199-115.webhostbox.net 5.14.0-427.31.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Aug 15 14:47:52 EDT 2024 x86_64
User: blushinc (1003)
PHP: 8.2.29
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/blushinc/loleverywhere.com/wp-content/plugins/td-woo/templates/td_woo_view_template.php
<?php
/**
 * Template use to view the woo cloud templates
 */
get_header();
global $wp_query;

if ( have_posts() ) {
    tdb_state_template::set_wp_query($wp_query);
    while ( have_posts() ) : the_post();
        ?>
        <div class="td-main-content-wrap td-container-wrap product">
            <div class="tdc-content-wrap">
                <?php the_content(); ?>
            </div>
        </div>
        <?php
    endwhile;
}

get_footer();