File "masonry.php"

Full Path: /home/jlklyejr/public_html/wp-content/test/wp-content/themes/goya/inc/templates/blogbit/masonry.php
File size: 1.46 KB
MIME-type: text/x-php
Charset: utf-8

<?php 
	add_filter( 'excerpt_length', 'goya_short_excerpt_length' );
	// Column classes
	$columns_large = get_theme_mod('blog_grid_columns', 3);
	$columns_medium = ( intval( $columns_large ) > 3 ) ? '3' : '2';

	if (is_sticky(get_the_ID()) ) {
		$base_grid = '24';
		$img_size = 'full';
	} else {
		$base_grid = '12';
		$img_size = 'medium_large';
	}

	$classes[] = 'col-md-' . $base_grid / $columns_medium;
	$classes[] = 'col-lg-' . $base_grid / $columns_large;
	$classes[] = 'post post-masonry item blog-post';
	$inner_classes[] = get_theme_mod('blog_list_animation', 'animation bottom-to-top');
?>

<div <?php post_class(esc_attr(implode(' ', $classes))); ?>>
	<div class="<?php echo esc_attr(implode(' ', $inner_classes)); ?>">
		<?php if ( has_post_thumbnail() ) : ?>
		<figure class="post-gallery">
			<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>">
				<?php goya_post_format_icon( get_the_ID() ); ?>
				<?php the_post_thumbnail($img_size); ?>
			</a>
		</figure>
		<?php endif; ?>
		<?php if ( get_theme_mod('blog_category', true) == true ) the_category(); ?>
		<header class="post-title entry-header">
			<?php the_title('<h3 class="entry-title" itemprop="name headline"><a class="entry-link" href="'.get_permalink().'" title="'.the_title_attribute("echo=0").'">', '</a></h3>'); ?>
		</header>
		<?php get_template_part( 'inc/templates/postbit/post-meta' ); ?>
		<div class="post-content">
			<?php the_excerpt(); ?>
		</div>
	</div>
</div>