| Server IP : 192.241.186.36 / Your IP : 216.73.216.164 Web Server : Apache/2.4.29 (Ubuntu) System : Linux webserver7 4.15.0-194-generic #205-Ubuntu SMP Fri Sep 16 19:49:27 UTC 2022 x86_64 User : root ( 0) PHP Version : 7.4.32 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/carsdaddy/wp-content/themes/cardealer/templates/ |
Upload File : |
<?php
/**
* Template Name: FAQ
* Description: A page template that display FAQ items.
*
* @package CarDealer
* @author Potenza Global Solutions
*/
get_header(); ?>
<?php
global $car_dealer_options, $cardealer_page_sidebar, $cardealer_faq_layout;
if ( ! isset( $car_dealer_options['page_sidebar'] ) || empty( $car_dealer_options['page_sidebar'] ) ) {
$cardealer_page_sidebar = 'right_sidebar';
} else {
$cardealer_page_sidebar = $car_dealer_options['page_sidebar'];
}
$page_layout_custom = get_post_meta( get_the_ID(), 'page_layout_custom', true );
if ( $page_layout_custom ) {
$page_sidebar = get_post_meta( get_the_ID(), 'page_sidebar', true );
if ( $page_sidebar ) {
$cardealer_page_sidebar = $page_sidebar;
}
}
$width = 12;
$sidebar_stat = '';
if ( 'left_sidebar' === $cardealer_page_sidebar || 'right_sidebar' === $cardealer_page_sidebar ) {
$width_lg = $width - 3;
$width_md = $width - 3;
$width_sm = $width - 4;
$sidebar_stat .= ' with-sidebar';
$sidebar_stat .= " with-$cardealer_page_sidebar";
} elseif ( 'two_sidebar' === $cardealer_page_sidebar ) {
$width_lg = 6;
$width_md = 6;
$width_sm = 6;
$sidebar_stat .= ' with-sidebar';
$sidebar_stat .= " with-$cardealer_page_sidebar";
} else {
$width_lg = $width;
$width_md = $width;
$width_sm = $width;
$sidebar_stat .= 'without-sidebar';
}
?>
<section class="content-wrapper-vc-enabled">
<div class="container">
<div class="row <?php echo esc_attr( $sidebar_stat ); ?>">
<?php if ( ( 'left_sidebar' === $cardealer_page_sidebar || 'two_sidebar' === $cardealer_page_sidebar ) ) { ?>
<div class="col-lg-3 col-md-3 col-sm-4 sidebar-left">
<div role="complementary" class="widget-area" id="secondary">
<?php get_sidebar( 'left' ); ?>
</div>
</div>
<?php } ?>
<div class="col-lg-<?php echo esc_attr( $width_lg ); ?> col-md-<?php echo esc_attr( $width_md ); ?> col-sm-<?php echo esc_attr( $width_sm ); ?>">
<div id="primary" class="site-content">
<div id="content" role="main">
<?php
while ( have_posts() ) :
the_post();
?>
<div class="entry-content">
<?php the_content(); ?>
<?php
wp_link_pages(
array(
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'cardealer' ),
'after' => '</div>',
)
);
?>
</div><!-- .entry-content -->
<div class="faqs-wrapper faq-layout-default">
<?php get_template_part( 'template-parts/faq/default' ); ?>
</div>
<?php endwhile; // end of the loop. ?>
</div>
</div>
</div>
<?php if ( ( 'right_sidebar' === $cardealer_page_sidebar || 'two_sidebar' === $cardealer_page_sidebar ) ) { ?>
<div class="col-lg-3 col-md-3 col-sm-4 sidebar-right">
<div role="complementary" class="widget-area" id="secondary">
<?php get_sidebar(); ?>
</div>
</div>
<?php } ?>
</div>
</div>
</section>
<?php
get_footer();