HEX
Server: LiteSpeed
System: Linux venus 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
User: axxoncom (1007)
PHP: 8.3.19
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/axxoncom/domains/standardshop.pk/public_html/wp-content/themes/vasia/page-full-width.php
<?php
/**
 * Template Name: Full Width Page
 *
 * @package WordPress
 * @subpackage Vasia
 * @since Vasia 1.0
 */

get_header();

$disable_the_title =  get_post_meta( $post->ID, 'page_custom_title', false );
$disable_breadcrumb =  get_post_meta( $post->ID, 'page_custom_breadcrumb', false );

$page_title_design = rdt_get_option('page_title_design' , '2');
$page_title_align = rdt_get_option('page_title_align' , 'left');
$page_title_size = rdt_get_option('page_title_size' , 'large');
$page_title_color = rdt_get_option('page_title_color' , 'dark');

if(!$disable_the_title && $page_title_design == '1') : ?>
	<div class="page-title-section text-<?php echo esc_attr($page_title_align); ?> page-title-<?php echo esc_attr($page_title_size); ?> text-<?php echo esc_attr($page_title_color); ?>">
		<div class="container">
		<?php if ( ! is_front_page() ) :
			?>
			<header>
				<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
			</header>
			<?php
			if( !$disable_breadcrumb ) echo vasia_breadcrumb();
		endif; ?>
		</div>
	</div>
<?php endif;

if($page_title_design == '2' && !$disable_breadcrumb ) : ?>
	<?php echo vasia_breadcrumb(); ?>
<?php endif;
?>
	<div id="content">
	<?php
	while ( have_posts() ) :
		the_post();

		get_template_part( 'template-parts/posts/content', 'page' );

		// If comments are open or we have at least one comment, load up the comment template.
		if ( comments_open() || get_comments_number() ) :
			comments_template();
		endif;

	endwhile; // End of the loop.
	?>
	</div>
<?php
get_footer();