Sha256: d7d0c2f2e413d89d4cfe74a0ed9fac357453b7251d8f19e20ce070bd3c2a9a93

Contents?: true

Size: 759 Bytes

Versions: 13

Compression:

Stored size: 759 Bytes

Contents

<?php // If not page, comment allowed, and comment supported
if(!is_page() && comments_open() && post_type_supports(get_post_type(), "comments") ): ?>

  <?php if(have_comments() ): ?>
    <h2><?php comments_number(); ?></h2>

    <ul>
      <?php foreach($comments as $comment): ?>
        <li>
          <?php comment_text(); ?>
          
          <cite><?php comment_type(); ?> by <?php comment_author_link(); ?> on <?php comment_date(); ?> at <?php comment_time(); ?></cite>

          <?php if ($comment->comment_approved == "0") : ?>
            <p>Your comment is awaiting approval</p>
          <?php endif; ?>
        </li>
      <?php endforeach; ?>
    </ul>
  <?php endif; ?>

  <?php comment_form(); ?>

<?php endif; ?>

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
edge_framework-1.3.1 template/wordpress/comments.php
edge_framework-1.3.0 template/wordpress/comments.php
edge_framework-1.2.9 template/wordpress/comments.php
edge_framework-1.2.7 template/wordpress/comments.php
edge_framework-1.2.6 template/wordpress/comments.php
edge_framework-1.2.5 template/wordpress/comments.php
edge_framework-1.2.4 template/wordpress/comments.php
edge_framework-1.2.3 template/wordpress/comments.php
edge_framework-1.2.2 template/wordpress/comments.php
edge_framework-1.2.1 template/wordpress/comments.php
edge_framework-1.2.0 template/wordpress/comments.php
edge_framework-1.1.0 template/wordpress/comments.php
edge_framework-1.0.0 template/wordpress/comments.php