Skip to content

Instantly share code, notes, and snippets.

@iammahmudur
Last active December 19, 2015 01:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iammahmudur/19d944872cfac1c285cf to your computer and use it in GitHub Desktop.
Save iammahmudur/19d944872cfac1c285cf to your computer and use it in GitHub Desktop.
<?php
/**
* The Template for displaying all single artists.
*/
get_header(); ?>
<div class="content_area">
<article <?php post_class('post') ?> id="post-<?php the_ID(); ?>">
<div class="post_area_title">
<h2 class="entry-title"><?php the_title(); ?></h2>
</div>
</article>
<?php get_template_part( 'loop', 'artist' ); ?>
<div class="single-artist-comment clearfix">
<?php if (comments_open() && !post_password_required()) { ?>
<article <?php post_class('post_reply post') ?> <?php if ($post_color){ echo 'style="border-color:'.$post_color.'" data-color="'.$post_color.'"';}?>>
<div class="post_inner">
<?php comments_template('', true); ?>
</div>
</article>
<?php } ?>
</div>
</div>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment