HEX
Server: Apache/2.4.65 (Debian)
System: Linux web6 5.10.0-36-amd64 #1 SMP Debian 5.10.244-1 (2025-09-29) x86_64
User: innocamp (1028)
PHP: 7.4.33
Disabled: 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,
Upload Files
File: /home/bookcc/public_html/wp-content/themes/fatmoon/single-work.php
<?php
/**
 * The Template for displaying work items.
 */

if ( ! defined( 'ABSPATH' ) ) {
    exit;
} // Exit if accessed directly

global $apollo13framework_a13;
define( 'A13FRAMEWORK_WORK_PAGE', true );

if ( isset( $_GET['a13-ajax-get'] ) ) {
	get_template_part('single-work-ajax');
	return;
}

the_post();


if(post_password_required()){
	/* don't use the_content() as it also applies filters that we don't need here, if we are using custom password page */
	echo get_the_content();
}
else{
	get_header();
	apollo13framework_title_bar();
?>
	<article id="content" class="clearfix"<?php apollo13framework_schema_args('creative'); ?>>
        <div class="content-limiter">
            <div id="col-mask">
                <div class="content-box">


	<?php
	// Disable default placement of addtoany widget but only in works
	remove_filter( 'the_content', 'A2A_SHARE_SAVE_add_to_content', 98 );

	$theme           = $apollo13framework_a13->get_meta( '_theme' );
	$_id              = get_the_ID();
	$show_desc       = (int) ( get_post_meta( $_id, '_enable_desc', true ) === 'on' );
	$is_text_content = strlen( $post->post_content ) > 0;

	if($theme === 'bricks'){
		$args = array(
			'cover_color'            => get_post_meta( $_id, '_slide_cover_color', true),
			'show_desc'              => get_post_meta( $_id, '_enable_desc', true ),
			'filter'                 => 'off',
			'proofing'               => 'off',
			'lightbox'               => get_post_meta( $_id, '_bricks_lightbox', true ),
			'content_column'         => 'off',
			'title_position'         => $apollo13framework_a13->get_meta( '_bricks_title_position' ),
			'hover_effect'           => get_post_meta( $_id, '_bricks_hover', true ),
			'overlay_cover'          => $apollo13framework_a13->get_meta( '_bricks_overlay_cover' ),
			'overlay_cover_hover'    => $apollo13framework_a13->get_meta( '_bricks_overlay_cover_hover' ),
			'overlay_gradient'       => $apollo13framework_a13->get_meta( '_bricks_overlay_gradient' ),
			'overlay_gradient_hover' => $apollo13framework_a13->get_meta( '_bricks_overlay_gradient_hover' ),
			'overlay_texts'          => $apollo13framework_a13->get_meta( '_bricks_overlay_texts' ),
			'overlay_texts_hover'    => $apollo13framework_a13->get_meta( '_bricks_overlay_texts_hover' ),
			'socials'                => 'off',
			'proportion'             => get_post_meta( $_id, '_bricks_proportions_size', true),
			'margin'                 => get_post_meta( $_id, '_brick_margin', true ),
			'max_width'              => get_post_meta( $_id, '_bricks_max_width', true ),
			'columns'                => get_post_meta( $_id, '_brick_columns', true ),
			'class'                  => 'single-work-gallery'.($is_text_content ? '' : ' work-content-off')
		);

		apollo13framework_make_bricks_gallery($args);
	}

	elseif($theme === 'slider'){
		$show_desc      = get_post_meta( $_id, '_enable_desc', true);
		$title_color    = get_post_meta( $_id, '_slide_title_bg_color', true );
		$title_color    = ( $title_color === '' || $title_color === false || $title_color === 'transparent' ) ? '' : $title_color;
		$thumbs         = $apollo13framework_a13->get_meta( '_thumbs' );
		$thumbs_on_load = $apollo13framework_a13->get_meta( '_thumbs_on_load' );
		$ken_scale      = $apollo13framework_a13->get_meta( '_ken_scale' );

		//slider proportions
		$slider_width_proportion = get_post_meta( $_id, '_slider_width_proportion', true);
		$slider_height_proportion = get_post_meta( $_id, '_slider_height_proportion', true);
		//if 0 or some other bad value then set it to 1
		$slider_width_proportion = (int)$slider_width_proportion === 0 ? 1 : $slider_width_proportion;

		$slider_opts = array(
			'autoplay'              => $apollo13framework_a13->get_meta( '_autoplay' ),
			'transition'            => $apollo13framework_a13->get_meta( '_transition' ),
			'fit_variant'           => $apollo13framework_a13->get_meta( '_fit_variant' ),
			'pattern'               => $apollo13framework_a13->get_meta( '_pattern' ),
			'gradient'              => $apollo13framework_a13->get_meta( '_gradient' ),
			'ken_burns_scale'       => strlen($ken_scale) ? $ken_scale : 120,
			'texts'                 => $show_desc,
			'title_color'           => $title_color,
			'transition_time'       => $apollo13framework_a13->get_option( 'work_slider_transition_time' ),
			'slide_interval'        => $apollo13framework_a13->get_option( 'work_slider_slide_interval' ),
			'thumbs'                => $thumbs,
			'thumbs_on_load'        => $thumbs_on_load,
			'socials'               => 'on',
			'window_high'           => $apollo13framework_a13->get_meta( '_slider_window_high' ),
			'ratio'                 => $slider_width_proportion.'/'.$slider_height_proportion,
			'extra_class'           => 'a13-main-slider',
			'main_slider'           => 'on',
		);

		apollo13framework_make_slider($slider_opts);
	}

	apollo13framework_single_work_text_content($is_text_content);

	apollo13framework_similar_works();
    apollo13framework_works_nav();
	?>
                </div>
            </div>
        </div>
    </article>
<?php
    get_footer();
}