File: /home/mmickelson/martyknows.com/wp-content/themes/bueno/templates/format-chat.php
<?php
/**
* The template part for displaying chat post format.
*
* @package bueno
*/
?>
<!--BEGIN .hentry -->
<article id="post-<?php the_ID(); ?>" <?php post_class('post__holder'); ?>>
<header class="post-header">
<?php if(!is_singular()) : ?>
<h3 class="post-title"><a href="<?php the_permalink(); ?>" title="<?php esc_attr_e('Permalink to:', 'bueno');?> <?php the_title(); ?>"><?php the_title(); ?></a></h3>
<?php else :?>
<h1 class="post-title"><?php the_title(); ?></h1>
<?php endif; ?>
<?php get_template_part('templates/post-meta'); ?>
</header>
<!-- Post Content -->
<div class="post_content">
<?php
if ( function_exists('the_post_format_chat') ) {
the_post_format_chat();
} else {
the_content('');
}
?>
<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'bueno' ), 'after' => '</div>' ) ); ?>
</div>
<?php if( ( has_tag() ) && ( is_singular() ) ) { ?>
<footer class="post-footer">
<i class="icon-tags"></i> <?php the_tags('Tags: ', ' ', ''); ?>
</footer>
<?php } ?>
<!-- //Post Content -->
</article><!--END .hentry-->
<?php if ( is_single() && get_the_author_meta( 'description' ) ) {
get_template_part( 'templates/post-author-bio' );
} ?>