Main Content

Comments

This feature is turned off by default, but you may enable it by allowing comments into your WordPress install. Additionally, the HTML snippet may be added to any custom post type should you want to add comments to the WordPress template.

 

Sample front view:

comments

<?php
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
?>

		<div class="tcu-layout-constrain">

			<div class="tcu-comments cf">
				<h3 class="tcu-comments__title"><?php _e( 'Comments', 'tcu_web_standards' ); ?></h3>
				<?php comments_template(); ?>
			</div>

		</div>

<?php endif; ?>