| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Old Sites/Engineering/V1/iimec/wp-content/themes/annotum-base/comment/ |
Upload File : |
<?php
/**
* @package anno
* This file is part of the Annotum theme for WordPress
* Built on the Carrington theme framework <http://carringtontheme.com>
*
* Copyright 2008-2011 Crowd Favorite, Ltd. All rights reserved. <http://crowdfavorite.com>
* Released under the GPL license
* http://www.opensource.org/licenses/gpl-license.php
*/
if (__FILE__ == $_SERVER['SCRIPT_FILENAME']) { die(); }
if (CFCT_DEBUG) { cfct_banner(__FILE__); }
global $comment, $post;
// Extract data passed in from threaded.php for comment reply link
extract($data);
?>
<article <?php comment_class('reply'); ?> id="comment-<?php comment_ID(); ?>">
<?php cfct_template_file('comment', 'comment-header'); ?>
<div class="content">
<?php
if ($comment->comment_approved == '0') {
echo '<p><b>'.__('Your comment is awaiting moderation.', 'anno').'</b></p>';
}
comment_text();
?>
</div><!-- .content -->
<div class="footer">
<?php
comment_reply_link(array_merge( $args, array('depth' => $depth, 'max_depth' => $args['max_depth'])), $comment, $post);
edit_comment_link(__('Edit This', 'anno'), ' <span class="delimiter">·</span> ', '');
?>
</div><!-- .footer -->
</article>