%k25u25%fgd5n!
<?php
/**
* The default template for displaying standard post format
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="photo">
<?php
the_post_thumbnail();
?>
</div>
<div class="description">
<?php
windazo_get_the_post_headline();
?>
<a href="<?php esc_url( the_permalink() ); ?>" class="header"><h3><?php the_title(); ?></h3></a>
<?php
$windazo_display_excerpt = 'visible';
?>
<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();
}
echo '<a href="'.esc_url( get_the_permalink() ).'" class="more-link">'.esc_html__( 'Read more', 'windazo' ).'</a>';
remove_filter( 'the_content', 'windazo_excerpt' );
?>
</div>
</div>
</article>