Current File : /home/mdkeenpw/www/wp-content/themes/globallogistics/skins/default/templates/content-sticky.php
<?php
/**
 * The Sticky template to display the sticky posts
 *
 * Used for index/archive
 *
 * @package GLOBALLOGISTICS
 * @since GLOBALLOGISTICS 1.0
 */

$globallogistics_columns     = max( 1, min( 3, count( get_option( 'sticky_posts' ) ) ) );
$globallogistics_post_format = get_post_format();
$globallogistics_post_format = empty( $globallogistics_post_format ) ? 'standard' : str_replace( 'post-format-', '', $globallogistics_post_format );

?><div class="column-1_<?php echo esc_attr( $globallogistics_columns ); ?>"><article id="post-<?php the_ID(); ?>" 
	<?php
	post_class( 'post_item post_layout_sticky post_format_' . esc_attr( $globallogistics_post_format ) );
	globallogistics_add_blog_animation( $globallogistics_template_args );
	?>
>

	<?php
	if ( is_sticky() && is_home() && ! is_paged() ) {
		?>
		<span class="post_label label_sticky"></span>
		<?php
	}

	// Featured image
	globallogistics_show_post_featured(
		array(
			'thumb_size' => globallogistics_get_thumb_size( 1 == $globallogistics_columns ? 'big' : ( 2 == $globallogistics_columns ? 'med' : 'avatar' ) ),
		)
	);

	if ( ! in_array( $globallogistics_post_format, array( 'link', 'aside', 'status', 'quote' ) ) ) {
		?>
		<div class="post_header entry-header">
			<?php
			// Post title
			the_title( sprintf( '<h5 class="post_title entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ), '</a></h6>' );
			// Post meta
			globallogistics_show_post_meta( apply_filters( 'globallogistics_filter_post_meta_args', array(), 'sticky', $globallogistics_columns ) );
			?>
		</div><!-- .entry-header -->
		<?php
	}
	?>
</article></div><?php

// div.column-1_X is a inline-block and new lines and spaces after it are forbidden