HEX
Server: Apache
System: Linux cp4.skywebbox.com 5.14.0-503.15.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Nov 28 07:25:19 EST 2024 x86_64
User: alfouzantranspor (1054)
PHP: 8.3.23
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/alfouzantranspor/public_html/wp-content/themes/businessexpo/single.php
<?php
/**
 *  Single Template
 *
 *  @package BusinessExpo
 */

get_header();

	/* Defaults */
	$businessexpo_blog_date                     = get_theme_mod( 'businessexpo_blog_date', 'true' );
	$businessexpo_comment_zero_comment_text     = get_theme_mod( 'businessexpo_comment_zero_comment_text', 'No Comments' );
	$businessexpo_comment_one_comment_text      = get_theme_mod( 'businessexpo_comment_one_comment_text', '1 Comment' );
	$businessexpo_comment_multiple_comment_text = get_theme_mod( 'businessexpo_comment_multiple_comment_text', '% Comments So far' );
?>
<?php get_template_part( 'breadcrumb' ); ?>
	<!-- Blog & Sidebar Section -->
	<?php 
		$activate_theme_data = wp_get_theme(); // getting current theme data.
		$activate_theme      = $activate_theme_data->name;
	?>
	<section id="site-content" class="section menu-overlap
		<?php if ( 'Architect Designs' == $activate_theme || 'Building Construction' == $activate_theme ){ ?> theme-dark <?php } else { ?> theme-light <?php } ?>">
		<div class="container">
			<div class="row">
			
				<?php
				// Page Layout Settings
				$businessexpo_page_layout = get_theme_mod( 'businessexpo_single_blog_pages_layout', 'businessexpo_right_sidebar' );
				// Initialize Variable
				$businessexpo_column_class = 'col-md-12 col-sm-12 col-xs-12';

				// Check Sidebar Column Condition
				if ( $businessexpo_page_layout == 'businessexpo_right_sidebar' || $businessexpo_page_layout == 'businessexpo_left_sidebar' && is_active_sidebar( 'sidebar-widget' ) ) {
					$businessexpo_column_class = 'col-md-8 col-sm-6 col-xs-12';
				}
				?>
						
				<!-- Left Sidebar -->
				<?php if ( $businessexpo_page_layout == 'businessexpo_left_sidebar' ) { ?>
					<?php if ( is_active_sidebar( 'sidebar-widget' ) ) { ?>
						<!--Sidebar-->
						<div class="col-md-4 col-sm-6 col-xs-12">
							<div class="sidebar space-left">
								<?php dynamic_sidebar( 'sidebar-widget' ); ?>
							</div>
						</div>
						<!--/Sidebar-->
						<?php
					}
				}
				?>
				<!-- Left Sidebar -->
				
				<!--Blog Posts-->
				<div class="<?php echo esc_attr( $businessexpo_column_class ); ?>">
					<div class="blog blog-single">
						<?php
						while ( have_posts() ) :
							the_post();
							get_template_part( 'template-parts/content-single', get_post_type() );
							?>
								<!--Blog Author-->
								<article class="blog-author">
									<div class="media row">
										<div class="media-avatar col-md-2">
											<figure class="avatar">
												<img src="<?php echo esc_url( get_avatar_url( get_the_author_meta( 'ID' ) ) ); ?>" class="img-circle">
											</figure>
										</div>
										<div class="media-body col-md-10">
											<h5 class="name"><?php the_author(); ?></h5>
											<h6 class="designation"><?php esc_html_e( 'Founder & CEO', 'businessexpo' ); ?></h6>
											<p><?php the_author_meta( 'description' ); ?></p>
										</div>
									</div>	
								</article>
								<!--/ Blog Author-->

								<?php
								// Next & Previous Post
								$next_post = get_next_post();
								$prev_post = get_previous_post();

								if ( ( ! empty( $prev_post ) ) || ( ! empty( $next_post ) ) ) {
									?>
									<!--Next Prev Posts-->
									<article class="post-navigation">
										<div class="row">
												<?php

													// Previous Post
												if ( ! empty( $prev_post ) ) :
													$prev_title     = strip_tags( str_replace( '"', '', $prev_post->post_title ) );
													$prev_thumbnail = get_the_post_thumbnail_url( $prev_post->ID );
													?>
													  
														<div class="col-6">
															<div class="prev">
																<a class="prev-post-label" href="<?php echo esc_url( get_permalink( get_previous_post() ) ); ?>">
																<?php if ( ! empty( $prev_thumbnail ) ) { ?>
																		<figure>
																			<img width="160" height="160" src="<?php echo esc_url( $prev_thumbnail ); ?>" class="attachment-thumbnail size-thumbnail wp-post-image" alt="">
																		</figure>	
																	<?php } ?>
																	<div class="prev-post-title">
																		<span><i class="fas fa-angle-double-left"></i> <?php esc_html_e( 'Previous post', 'businessexpo' ); ?></span>
																		<h2><?php echo esc_html( $prev_title ); ?></h2>
																	</div>
																</a>
															</div>
														</div>
													<?php
													endif;

													// Next Post
												if ( ! empty( $next_post ) ) :

													$next_title     = strip_tags( str_replace( '"', '', $next_post->post_title ) );
													$next_thumbnail = get_the_post_thumbnail_url( $next_post->ID );
													?>
														<div class="col-6 text-right">
															<div class="next">
																<a class="next-post-label" href="<?php echo esc_url( get_permalink( get_next_post() ) ); ?>">
																	<div class="next-post-title">
																		<span><?php esc_html_e( 'Next post', 'businessexpo' ); ?> <i class="fas fa-angle-double-right"></i></span>
																		<h2><?php echo esc_html( $next_title ); ?></h2>
																	</div>
																<?php if ( ! empty( $next_thumbnail ) ) { ?>
																		<figure>
																			<img width="160" height="160" src="<?php echo esc_url( $next_thumbnail ); ?>" class="attachment-thumbnail size-thumbnail wp-post-image" alt="">
																		</figure>
																	<?php } ?>
																</a>
															</div>
														</div>
												<?php endif; ?>
										</div>
									</article>
									<!--/ Next Prev Posts-->
								<?php } ?>

								<?php if ( $post->comment_status == 'open' ) { ?>
									<!--Comment Section-->
									<article class="comment-section">
										<div class="comment-title"><h3><?php comments_number( $businessexpo_comment_zero_comment_text, $businessexpo_comment_one_comment_text, $businessexpo_comment_multiple_comment_text ); ?></h3></div>
								
										<?php
										// get comments
										comments_template();

										if ( have_comments() ) { // We have comments
											?>
												
											<ul class="comment-list">
												<?php
												$args = array(
													'max_depth'             => '4',
													'style'                 => 'div',
													'callback'              => 'businessexpo_custom_comments',
													'avatar_size'           => 50,
												);
												wp_list_comments( $args );

												?>
											</ul>
											<?php
											paginate_comments_links(
												array(
													'prev_text' => __( '&laquo', 'businessexpo' ),
													'next_text' => __( '&raquo', 'businessexpo' ),
												)
											);

											if ( ! comments_open() && get_comments_number() ) {
												?>
												<p class="no-comments"><?php esc_html_e( 'Comments are closed', 'businessexpo' ); ?></p>
												<?php
											} //comments open end
										} //have comments end

										?>
									</article>
								<!--/End of Comment Section-->
									<?php
								}
						endwhile;
						// Reset Post Data
						wp_reset_postdata();
						?>
					</div>
				</div>	
				<!--/Blog Posts-->

				<!-- Right Sidebar -->
				<?php if ( $businessexpo_page_layout == 'businessexpo_right_sidebar' ) { ?>
					<?php if ( is_active_sidebar( 'sidebar-widget' ) ) { ?>
						<!--Sidebar-->
						<div class="col-md-4 col-sm-6 col-xs-12">
							<div class="sidebar space-right">
								<?php dynamic_sidebar( 'sidebar-widget' ); ?>
							</div>
						</div>
						<!--/Sidebar-->
						<?php
					}
				}
				?>
				<!-- Right Sidebar -->
				
				
				
			</div>
		</div>
	</section>
	<!-- End of Blog & Sidebar Section -->
	
<?php get_footer(); ?>