[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@3.128.226.114: ~ $
<?php
$class = '';
global $post, $portfolio_data;
$category     = empty( $instance['portfolio_category'] ) ? array() : $instance['portfolio_category'];
$filter_hiden = $instance['filter_hiden'] ? $instance['filter_hiden'] : false;
$class        .= isset( $instance['style-item'] ) ? ' ' . $instance['style-item'] : '';
$class        .= isset( $instance['gutter'] ) && $instance['gutter'] ? " gutter" : '';
$class        .= isset( $instance['item_size'] ) ? ' ' . $instance['item_size'] : '';
$class        .= isset( $instance['paging'] ) ? ' ' . $instance['paging'] : '';

$paging       = isset( $instance['paging'] ) ? $instance['paging'] : '';
$item_size    = isset( $instance['item_size'] ) ? $instance['item_size'] : '';
$gutter       = isset( $instance['gutter'] ) ? $instance['gutter'] : '';
$column       = isset( $instance['column'] ) ? $instance['column'] : '';
$num_per_view = isset( $instance['num_per_view'] ) ? $instance['num_per_view'] : "";

$portfolio_taxs = array();

if ( $category == 'all' ) {
	$category = array();
}
if ( isset( $category[''] ) && is_array( $category[''] ) ) {
	$category = $category[''];

}

// Filter position
$css_filter_position = isset( $instance['filter_position'] ) ? ' style="text-align:' . $instance['filter_position'] . ';"' : '';

// Column
if ( $column == 'two' ) {
	$class_column = "two-col";
} elseif ( $column == 'three' ) {
	$class_column = "three-col";
} elseif ( $column == 'four' ) {
	$class_column = "four-col";
} elseif ( $column == 'five' ) {
	$class_column = "five-col";
} else {
	$class_column = "one-col";
}

// Paging
if ( $paging == 'paging' ) {
	if ( is_front_page() ) {
		$paged = ( get_query_var( 'page' ) ) ? get_query_var( 'page' ) : 1;
	} else {
		$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
	}
	if ( $num_per_view != '' ) { // overide number
		$argss = array(
			'post_type'      => 'portfolio',
			'posts_per_page' => $num_per_view,
			'paged'          => $paged
		);
	} else {// using number in config
		$argss = array(
			'post_type' => 'portfolio',
			'paged'     => $paged
		);
	}

} else {
	if ( $paging == 'limit' ) {
		if ( $num_per_view != '' ) { // overide number
			$argss = array(
				'post_type'      => 'portfolio',
				'posts_per_page' => $num_per_view
			);
		} else {// using number in config
			$argss = array(
				'post_type' => 'portfolio'
			);
		}

	} else {
		if ( $paging == 'infinite_scroll' ) {
			if ( is_front_page() ) {
				$paged = ( get_query_var( 'page' ) ) ? get_query_var( 'page' ) : 1;
			} else {
				$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
			}
			if ( $num_per_view != '' ) { // overide number
				$argss = array(
					'post_type'      => 'portfolio',
					'posts_per_page' => $num_per_view,
					'paged'          => $paged
				);
			} else {// using number in config
				$argss = array(
					'post_type' => 'portfolio',
					'paged'     => $paged
				);
			}
		} else { // show all post
			$argss = array(
				'post_type'      => 'portfolio',
				'posts_per_page' => - 1
			);
		}
	}
}

if ( ( is_array( $category ) && ! empty( $category ) ) || ( ! is_array( $category ) && $category ) ) {
	$argss['tax_query'][] = array(
		'taxonomy' => 'portfolio_category',
		'field'    => 'term_id',
		'terms'    => $category
	);
}

$argss['post_status'] = 'publish';

$argss = apply_filters( 'thim_query_portfolio', $argss );

$gallery = new WP_Query( $argss );

$number_total = max( $gallery->post_count, $paging );
if ( is_array( $gallery->posts ) && ! empty( $gallery->posts ) && $gallery->post_count ) {
	foreach ( $gallery->posts as $gallery_post ) {
		$post_taxs = wp_get_post_terms( $gallery_post->ID, 'portfolio_category', array( "fields" => "all" ) );
		if ( is_array( $post_taxs ) && ! empty( $post_taxs ) ) {
			foreach ( $post_taxs as $post_tax ) {
				if ( is_array( $category ) && ! empty( $category ) && ( in_array( $post_tax->term_id, $category ) || in_array( $post_tax->parent, $category ) ) ) {
					$portfolio_taxs[urldecode( $post_tax->slug )] = $post_tax->name;
				}
				if ( empty( $category ) || ! isset( $category ) ) {
					$portfolio_taxs[urldecode( $post_tax->slug )] = $post_tax->name;
				}
			}
		}
	}
} else {
	return;
}

wp_enqueue_script( 'thim-portfolio-appear' );
wp_enqueue_script( 'thim-portfolio-widget' );
wp_enqueue_style( 'thim-portfolio' );
?>
	<div
		class="wapper_portfolio<?php echo esc_attr( $class ); ?>">
		<?php if ( $filter_hiden != true ) { ?>
			<div class="portfolio-tabs-wapper filters"<?php echo ent2ncr( $css_filter_position ); ?> >
				<ul class="portfolio-tabs">
					<?php if ( empty( $category ) ) { ?>
						<li><a href class="filter active"
							   data-filter="*"><?php echo esc_html__( 'All', 'eduma' ); ?></a>
						</li>
						<?php if ( $portfolio_taxs ) : ?>
							<?php foreach ( $portfolio_taxs as $portfolio_tax_slug => $portfolio_tax_name ): ?>
								<li>
									<a class="filter" href
									   data-filter=".<?php echo ent2ncr( $portfolio_tax_slug ); ?>"><?php echo ent2ncr( $portfolio_tax_name ); ?></a>
								</li>
							<?php endforeach; ?>
						<?php endif;
					} else {
						$term = get_term( $category, 'portfolio_category' );
						$name = $term->name;
						$slug = $term->slug;
						?>
						<li>
							<a class="filter active" href data-filter=".<?php echo $slug; ?>"><?php echo $name; ?></a>
						</li>
						<?php
					}
					?>
				</ul>
			</div>
		<?php } ?>

		<div class="portfolio_column">
			<ul class="content_portfolio <?php echo esc_attr( $instance['style-item'] ); ?>">
				<?php
				while ( $gallery->have_posts() ): $gallery->the_post();

					$image_crop     = '';
					$feature_images = get_post_meta( get_the_ID(), 'feature_images', true );
					$bk_ef          = get_post_meta( get_the_ID(), 'thim_portfolio_bg_color_ef', true );
					if ( $bk_ef == '' ) {
						$bk_ef = get_post_meta( get_the_ID(), 'thim_portfolio_bg_color_ef', true );
						$bg    = '';
					} else {
						$bk_ef = get_post_meta( get_the_ID(), 'thim_portfolio_bg_color_ef', true );
						$bg    = 'style="background-color:' . $bk_ef . ';"';
					}

					$images_size  = 'portfolio_size11';
					$style_layout = '';

					$class_size = "";
					if ( $item_size == "multigrid" ) {
						if ( $feature_images == 'size11' ) {
							$images_size = 'portfolio_size11';
							$class_size  = "";
						} elseif ( $feature_images == 'size12' ) {
							$images_size = 'portfolio_size12';
							$class_size  = " height_large";
						} elseif ( $feature_images == 'size21' ) {
							$images_size = 'portfolio_size21';
							$class_size  = " item_large";
						} elseif ( $feature_images == 'size22' ) {
							$images_size = 'portfolio_size22';
							$class_size  = " height_large item_large";
						} else {
							$array       = array(
								'portfolio_size11' => 'size11',
								'portfolio_size12' => 'size12',
								'portfolio_size21' => 'size21',
								'portfolio_size22' => 'size22'
							);
							$images_size = array_rand( $array, 1 );
							if ( $images_size == 'portfolio_size11' ) {
								$class_size = "";
							} else {
								if ( $images_size == 'portfolio_size12' ) {
									$class_size = " height_large";
								} else {
									if ( $images_size == 'portfolio_size21' ) {
										$class_size = " item_large";
									} else {
										$class_size = " height_large item_large";
									}
								}
							}
						}
						$class_size = $class_size . " " . $class_column;
					} else {
						if ( $item_size == "masonry" ) {
							$class_size  = "";
							$images_size = "full";

							$class_size = $class_size . " " . $class_column;
						} else {
							//$images_size = 'portfolio_same_size';
							$images_size = 'portfolio_size11';
							$class_size  = $class_size . " " . $class_column;
						}
					}

					$item_classes = '';
					$terms_id     = array();
					$item_cats    = get_the_terms( $post->ID, 'portfolio_category' );
					if ( $item_cats ):
						foreach ( $item_cats as $item_cat ) {
							$item_classes .= urldecode( $item_cat->slug ) . ' ';
							$terms_id[]   = $item_cat->term_id;
						}
					endif;

					$image_id = get_post_thumbnail_id( $post->ID );

					if ( $item_size == "masonry" ) {
						$height = null;
						$width  = '600';
						$imgurl = wp_get_attachment_image_src( $image_id, 'full' );
						$ratio  = $imgurl[2] / $imgurl[1];
						$height = round( $width * $ratio );
						if ( $height ) {
							$imgurl = wp_get_attachment_image_src( $image_id, array( $width, $height ) );
						}
						$html_image = '<img src="' . $imgurl[0] . '" alt= ' . get_the_title() . ' title = ' . get_the_title() . ' />';

					} else {
						$crop       = true;
						$dimensions = isset( $portfolio_data['thim_portfolio_option_dimensions'] ) ? $portfolio_data['thim_portfolio_option_dimensions'] : array();
						if ( $images_size == 'portfolio_size11' ) {
							$w = isset( $dimensions['width'] ) ? $dimensions['width'] : '480';
							$h = isset( $dimensions['height'] ) ? $dimensions['height'] : '320';
						} else {
							if ( $images_size == 'portfolio_size12' ) {
								$w = isset( $dimensions['width'] ) ? $dimensions['width'] : '480';
								$h = isset( $dimensions['height'] ) ? ( intval( $dimensions['height'] ) * 2 ) : '640';
							} else {
								if ( $images_size == 'portfolio_size21' ) {
									$w = isset( $dimensions['width'] ) ? ( intval( $dimensions['width'] ) * 2 ) : '960';
									$h = isset( $dimensions['height'] ) ? $dimensions['height'] : '320';
								} else {
									$w = isset( $dimensions['width'] ) ? ( intval( $dimensions['width'] ) * 2 ) : '960';
									$h = isset( $dimensions['height'] ) ? ( intval( $dimensions['height'] ) * 2 ) : '640';
								}
							}
						}
						$imgurl = wp_get_attachment_image_src( $image_id, array( $w, $h ) );

						if ( $item_size == "multigrid" && $gutter == "on" ) {
							$html_image = '<div class="thumb-img" style="background: url(' . $imgurl[0] . ');background-size: cover;background-repeat: no-repeat;background-position: center center;height: inherit;"><img style="visibility: hidden;" src="' . $imgurl[0] . '" title="' . esc_attr( get_the_title( $post->ID ) ) . '" alt="' . esc_attr( get_the_title( $post->ID ) ) . '" /></div>';
						} else {
							$html_image = '<img src="' . $imgurl[0] . '" title="' . esc_attr( get_the_title( $post->ID ) ) . '" alt="' . esc_attr( get_the_title( $post->ID ) ) . '" />';
						}
					}

					// check postfolio type
					$btn_text  = esc_html__( 'Zoom', 'eduma' );
					$data_href = "";
					if ( get_post_meta( get_the_ID(), 'selectPortfolio', true ) == "portfolio_type_1" ) {
						if ( get_post_meta( get_the_ID(), 'style_image_popup', true ) == "Style-01" ) { // prettyPhoto
							$imclass = "image-popup-01";
							if ( get_post_meta( get_the_ID(), 'project_item_slides', true ) != "" ) { //overide image
								$att     = get_post_meta( get_the_ID(), 'project_item_slides', true );
								$imImage = wp_get_attachment_image_src( $att, 'full' );
								$imImage = $imImage[0];
							} else {
								if ( has_post_thumbnail( $post->ID ) ) {// using thumb
									$image   = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );
									$imImage = $image[0];
								} else {// no thumb and no overide image
									$imclass  = "";
									$imImage  = get_permalink( $post->ID );
									$btn_text = esc_html__( 'View More', 'eduma' );
								}
							}

						} else { // magnific
							$imclass = "image-popup-02";
							wp_enqueue_script( 'magnific-popup' );
							if ( get_post_meta( get_the_ID(), 'project_item_slides', true ) != "" ) {
								$att     = get_post_meta( get_the_ID(), 'project_item_slides', true );
								$imImage = wp_get_attachment_image_src( $att, 'full' );
								$imImage = $imImage[0];
							} else {
								if ( has_post_thumbnail( $post->ID ) ) {

									$image   = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );
									$imImage = $image[0];
								} else {
									$imclass  = "";
									$imImage  = get_permalink( $post->ID );
									$btn_text = esc_html__( 'View More', 'eduma' );
								}
							}

						}
					} else {
						if ( get_post_meta( get_the_ID(), 'selectPortfolio', true ) == "portfolio_type_video" ) {
							wp_enqueue_script( 'magnific-popup' );
							$imclass = "video-popup";
							if ( get_post_meta( get_the_ID(), 'project_video_embed', true ) != "" ) {
								if ( get_post_meta( get_the_ID(), 'project_video_type', true ) == "youtube" ) {
									$imImage = 'https://www.youtube.com/watch?v=' . get_post_meta( get_the_ID(), 'project_video_embed', true );
								} else if ( get_post_meta( get_the_ID(), 'project_video_type', true ) == "vimeo" ) {
									$imImage = 'https://player.vimeo.com/video/' . get_post_meta( get_the_ID(), 'project_video_embed', true );
								}

							} else {
								if ( has_post_thumbnail( $post->ID ) ) {
									$image   = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );
									$imImage = $image[0];
								} else {
									$imclass  = "";
									$imImage  = get_permalink( $post->ID );
									$btn_text = esc_html__( 'View More', 'eduma' );
								}
							}
						} else {
							if ( get_post_meta( get_the_ID(), 'selectPortfolio', true ) == "portfolio_type_2" ) {
								$imclass   = "slider-popup";
								$imImage   = "#" . $post->post_name;
								$data_href = 'data-href="' . get_permalink( $post->ID ) . '"';
							} else {
								$imclass   = "";
								$data_href = "";
								$imImage   = get_permalink( $post->ID );
								$btn_text  = esc_html__( 'View More', 'eduma' );
							}
						}
					}
					/* end check portfolio type */

					echo '<li data-color="' . $bk_ef . '" class="element-item ' . $item_classes . ' item_portfolio ' . $class_size . $style_layout . '" ' . $bg . '>';
					echo '<div class="portfolio-image">';
					echo '<div class="img-portfolio">';
					if ( $instance['style-item'] == "style09" ) {
						echo '<div class = "image-popup">';
						echo '<a href = "' . $imgurl[0] . '" ><i aria-hidden="true" class="tk tk-expand"></i></a>';
						echo '<a href="' . esc_url( get_permalink( $post->ID ) ) . '"><i aria-hidden="true" class="tk tk-plus"></i></a>';
						echo '</div>';
					}
					if ( get_post_meta( get_the_ID(), 'project_video_embed', true ) != "" ) {
						if ( get_post_meta( get_the_ID(), 'project_video_type', true ) == "youtube" ) {
							echo '<iframe width="100%" height="250" src="https://www.youtube.com/embed/' . get_post_meta( get_the_ID(), 'project_video_embed', true ) . '" frameborder="0" allowfullscreen></iframe>';
						} else if ( get_post_meta( get_the_ID(), 'project_video_type', true ) == "vimeo" ) {
							echo '<iframe src="https://player.vimeo.com/video/' . get_post_meta( get_the_ID(), 'project_video_embed', true ) . '?h=f443210a78&title=0" width="100%" height="250" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe>';
						}
					} else {
						echo '<a href="' . esc_url( get_permalink( $post->ID ) ) . '" title="' . esc_attr( get_the_title( $post->ID ) ) . '">' . $html_image . '</a>';
					}
					echo '</div>';

					echo '<div class="portfolio-hover" ' . $bg . '><div class="thumb-bg"><div class="mask-content">';
					echo '<h3><a href="' . esc_url( get_permalink( $post->ID ) ) . '" title="' . esc_attr( get_the_title( $post->ID ) ) . '" >' . get_the_title( $post->ID ) . '</a></h3>';
					$terms    = get_the_terms( $post->ID, 'portfolio_category' );
					$cat_name = "";
					if ( $terms && ! is_wp_error( $terms ) ) :
						foreach ( $terms as $term ) {
							if ( $cat_name ) {
								$cat_name .= ', ';
							}
							$cat_name .= '<a href="' . esc_url( get_term_link( $term ) ) . '">' . $term->name . "</a>";
						}
						echo '<div class="cat_portfolio">' . $cat_name . '</div>';
					endif;

					if ( $instance['style-item'] == "style09" ) {
						echo '<p class="description"> ' . get_the_excerpt() . ' </p>';
					}
					echo '<a href="' . esc_url( $imImage ) . '" title="' . esc_attr( get_the_title( $post->ID ) ) . '" class="btn_zoom ' . $imclass . '" ' . $data_href . '>' . $btn_text . '</a>';
					echo '</div></div></div></div>';
					echo '</li>';
					?>

				<?php endwhile;
				wp_reset_postdata();
				?>
			</ul>
			<?php
			$show_readmore = $instance['show_readmore'];
			$btn_text      = esc_html__( 'View More', 'eduma' );
			if ( $show_readmore ) {
				echo '<div class="read-more">';
				echo '<a class="thim-button" href="' . esc_url( home_url( '/' ) ) . 'portfolio/">' . $btn_text . '</a>';
				echo '</div>';
			}
			if ( $paging == 'paging' ) {
				portfolio_pagination( $gallery->max_num_pages, $range = 2, $paged );
			}

			if ( $paging == 'infinite_scroll' ) {
				portfolio_pagination( $gallery->max_num_pages, $range = 2, $paged );
			}
			?>
		</div>
	</div>
	<!-- .wapper portfolio -->

Filemanager

Name Type Size Permission Actions
base.php File 16.58 KB 0644