| Server IP : 198.38.94.67 / Your IP : 216.73.217.74 Web Server : LiteSpeed System : Linux d6054.dxb1.stableserver.net 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64 User : azfilmst ( 1070) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/azfilmst/royalopus.ae/wp-content/themes/wpresidence/page-templates/ |
Upload File : |
<?php
/** MILLDONE
* Template Name: Terms and Conditions
* src: page-templates\terms_conditions.php
* This template handles the display of the Terms and Conditions page in the WpResidence theme.
* It provides a standard layout for displaying the page content with breadcrumbs and sidebar.
*
* @package WpResidence
* @subpackage Templates
* @since 1.0.0
*/
// Exit if accessed directly
if (!defined('ABSPATH')) {
exit;
}
get_header();
$wpestate_options = get_query_var('wpestate_options');
?>
<div class="row wpresidence_page_content_wrapper">
<?php
// Display breadcrumbs
get_template_part('templates/breadcrumbs');
?>
<div class="p-0 p04mobile wpestate_column_content col-xs-12 <?php echo esc_attr($wpestate_options['content_class']); ?>">
<?php
// Display AJAX container
get_template_part('templates/ajax_container');
// Main content loop
while (have_posts()) : the_post();
// Check if page title should be displayed
$show_title = get_post_meta($post->ID, 'page_show_title', true);
if ($show_title !== 'no') :
?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php
endif;
?>
<div class="single-content">
<?php the_content(); ?>
</div>
<?php
endwhile;
?>
</div>
<?php
// Include sidebar
get_template_part('sidebar');
?>
</div>
<?php
get_footer();
?>