Server IP : 104.21.93.192 / Your IP : 216.73.216.73 Web Server : LiteSpeed System : Linux premium900.web-hosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : redwjova ( 1790) PHP Version : 8.1.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/redwjova/sort.llc/wp-content/plugins/ultimate-post/classes/ |
Upload File : |
<?php defined( 'ABSPATH' ) || exit; $is_block_theme = wp_is_block_theme(); global $ULTP_HEADER_ID; global $ULTP_FOOTER_ID; $builder_active = ultimate_post()->get_setting('ultp_builder') != 'false'; $has_header = $builder_active ? $ULTP_HEADER_ID : ''; $has_footer = $builder_active ? $ULTP_FOOTER_ID : ''; if( $is_block_theme ) { ?><!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <?php wp_body_open(); if( !$has_header ) { ob_start(); block_template_part('header'); $header = ob_get_clean(); echo '<header class="wp-block-template-part">'.$header.'</header>'; } } else { get_header(); } do_action( 'ultp_before_content' ); $width = ultimate_post()->get_setting( 'container_width' ); $width = $width ? $width : '1140'; ?> <div class="ultp-template-container" style="margin:0 auto;max-width:<?php echo esc_attr( $width ); ?>px; padding: 0 15px; width: -webkit-fill-available; width: -moz-available;"> <?php while ( have_posts() ) : the_post(); the_content(); if ( comments_open() || get_comments_number() ) { comments_template(); } endwhile; ?> </div> <?php do_action( 'ultp_after_content' ); if( $is_block_theme ) { ?> </body> </html> <?php if ( !$has_footer ) { ob_start(); block_template_part('footer'); $footer = ob_get_clean(); echo '<footer class="wp-block-template-part">'.$footer.'</footer>'; } wp_head(); wp_footer(); } else { get_footer(); }