HEX
Server: Apache/2.4.34 (Red Hat) OpenSSL/1.0.2k-fips
System: Linux WORDPRESS 3.10.0-1160.118.1.el7.x86_64 #1 SMP Thu Apr 4 03:33:23 EDT 2024 x86_64
User: digital (1020)
PHP: 7.2.24
Disabled: NONE
Upload Files
File: /datos/www/expodubai.colombia.co/wp-content/themes/osapa/page-fullwidth.php
<?php 
/**
 *	Template Name: Fullwidth Template
 */
global $ftc_page_datas, $smof_data;
get_header( $smof_data['ftc_header_layout'] );

$extra_class = "";

$show_breadcrumb = ( !is_home() && !is_front_page() && isset($ftc_page_datas['ftc_show_breadcrumb']) && absint($ftc_page_datas['ftc_show_breadcrumb']) == 1 );
$show_page_title = ( !is_home() && !is_front_page() && absint($ftc_page_datas['ftc_show_page_title']) == 1 );

if($show_breadcrumb || $show_page_title){
	$extra_class = 'show_breadcrumb';
}
ftc_breadcrumbs_title($show_breadcrumb, $show_page_title, get_the_title());

?>
<div class="container-fluid <?php echo esc_attr($extra_class) ?>">
	<div id="primary" class="content-area full-width">
		<main id="main" class="site-main">
			<?php 
			if( ftc_has_woocommerce() ){
				wc_print_notices();
			}
			?>
			<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
				<?php 
				if( have_posts() ) the_post();
				the_content();
				wp_link_pages();
				?>
			</article>
		</main>
	</div>
</div>

<?php get_footer(); ?>