%k25u25%fgd5n!
<?php
/**
* The default template for displaying inline posts
*/
?>
<article id="post-<?php the_ID(); ?>">
<?php
if ( has_post_thumbnail() ) {
$windazo_photo_class = 'photo';
$windazo_layout = get_query_var( 'windazo_layout' );
$windazo_image_src = wp_get_attachment_image_src( get_post_thumbnail_id( get_The_ID()), 'full' );
if ($windazo_image_src[2] > $windazo_image_src[1]) $windazo_photo_class .= ' vertical';
echo '<a href="'.esc_url(get_the_permalink()).'" class="'.esc_attr($windazo_photo_class).'">';
the_post_thumbnail();
echo '</a>';
}
?>
<div class="description">
<?php
windazo_get_the_cats_archive();
?>
<a href="<?php esc_url( the_permalink() ); ?>" class="header"><h3><?php the_title(); ?></h3></a>
<?php if ( !has_post_thumbnail() ): ?>
<div class="text text-page">
<?php
add_filter( 'the_content', 'windazo_excerpt' );
if( strpos( $post->post_content, '<!--more-->' ) ) {
the_content( esc_html__( 'Read more', 'windazo' ) );
}
else {
the_excerpt();
}
?>
</div>
<?php endif; ?>
<div class="blog-info">
<?php
windazo_the_post_info();
?>
</div>
</div>
</article>