mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
62 lines
2.1 KiB
PHP
62 lines
2.1 KiB
PHP
<?php if(post_password_required()) : ?>
|
|
<a name="comments"></a>
|
|
<div id="comments">
|
|
<p><?php _e('Password Required', 'origami') ?></p>
|
|
</div>
|
|
<?php return; ?>
|
|
<?php endif; ?>
|
|
|
|
<?php if(have_comments() || comments_open()) : ?>
|
|
<a name="comments"></a>
|
|
<div id="comments" class="section">
|
|
<?php if(have_comments()) : ?>
|
|
<h3 class="comments-title">
|
|
<?php
|
|
printf(
|
|
_n('One Comment', '%1$s Comments', get_comments_number(), 'origami'),
|
|
number_format_i18n(get_comments_number()),
|
|
'<em>' . get_the_title() . '</em>'
|
|
);
|
|
?>
|
|
</h3>
|
|
|
|
<?php if(get_comment_pages_count() > 1 && get_option('page_comments')) : ?>
|
|
<div class="navigation">
|
|
<div
|
|
class="nav-previous"><?php previous_comments_link(__('<span class="meta-nav">←</span> Older Comments', 'origami')); ?></div>
|
|
<div
|
|
class="nav-next"><?php next_comments_link(__('Newer Comments <span class="meta-nav">→</span>', 'origami')); ?></div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<ol class="commentlist">
|
|
<?php
|
|
// List comments
|
|
wp_list_comments(array(
|
|
'callback' => 'origami_comment'
|
|
));
|
|
?>
|
|
</ol>
|
|
<?php endif; ?>
|
|
|
|
<?php
|
|
// Display the comment form
|
|
$commenter = wp_get_current_commenter();
|
|
comment_form(array(
|
|
'fields' => array(
|
|
'author' => sprintf('<input name="author" type="text" placeholder="%s" value="' . esc_attr( $commenter['comment_author'] ) . '" required />', __('Name*', 'origami')),
|
|
'email' => sprintf('<input name="email" type="text" placeholder="%s" value="' . esc_attr( $commenter['comment_author_email'] ) . '" required />', __('Email*', 'origami')),
|
|
'url' => sprintf('<input name="url" type="text" placeholder="%s" value="' . esc_attr( $commenter['comment_author_url'] ) . '" />', __('Website', 'origami')),
|
|
),
|
|
'comment_field' => '<textarea id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea>',
|
|
));
|
|
?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<?php if(!comments_open() && !is_page() && post_type_supports(get_post_type(), 'comments')) : ?>
|
|
<div id="comments" class="comments-disabled content">
|
|
<p><?php _e('Comments are Disabled', 'origami') ?></p>
|
|
</div>
|
|
<?php endif; ?>
|