mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
69 lines
2.0 KiB
PHP
69 lines
2.0 KiB
PHP
<?php
|
|
/*
|
|
The comments page for Bones
|
|
*/
|
|
|
|
// Do not delete these lines
|
|
if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
|
|
die ('Please do not load this page directly. Thanks!');
|
|
|
|
if ( post_password_required() ) { ?>
|
|
<div class="alert alert-info"><?php _e("This post is password protected. Enter the password to view comments.","wpbo"); ?></div>
|
|
<?php
|
|
return;
|
|
}
|
|
?>
|
|
|
|
<!-- You can start editing here. -->
|
|
|
|
<?php if ( have_comments() ) : ?>
|
|
<?php if ( ! empty($comments_by_type['comment']) ) : ?>
|
|
<h3 id="comments"><?php comments_number('<span>' . __("No","wpbo") . '</span> ' . __("Responses","wpbo") . '', '<span>' . __("One","wpbo") . '</span> ' . __("Response","wpbo") . '', '<span>%</span> ' . __("Responses","wpbo") );?> <?php _e("to","wpbo"); ?> “<?php the_title(); ?>”</h3>
|
|
|
|
<nav id="comment-nav">
|
|
<ul class="clearfix">
|
|
<li><?php previous_comments_link( __("Older comments","wpbo") ) ?></li>
|
|
<li><?php next_comments_link( __("Newer comments","wpbo") ) ?></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<ol class="commentlist">
|
|
<?php wp_list_comments('type=comment&callback=wpbo_bootstrap_comments'); ?>
|
|
</ol>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php if ( ! empty($comments_by_type['pings']) ) : ?>
|
|
<h3 id="pings"><?php _e('Trackbacks/Pingbacks','wpbo');?></h3>
|
|
|
|
<ol class="pinglist">
|
|
<?php wp_list_comments('type=pings&callback=list_pings'); ?>
|
|
</ol>
|
|
<?php endif; ?>
|
|
|
|
<nav id="comment-nav">
|
|
<ul class="clearfix">
|
|
<li><?php previous_comments_link( __("Older comments","wpbo") ) ?></li>
|
|
<li><?php next_comments_link( __("Newer comments","wpbo") ) ?></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<?php else : // this is displayed if there are no comments so far ?>
|
|
|
|
<?php if ( comments_open() ) : ?>
|
|
<!-- If comments are open, but there are no comments. -->
|
|
|
|
<?php else : // comments are closed
|
|
?>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
<?php if ( comments_open() ) : ?>
|
|
|
|
<?php comment_form(array('comment_notes_after' => '')); ?>
|
|
|
|
<?php endif; // if you delete this the sky will fall on your head ?>
|