Сделал форму отправки комментариев на wp, а она не работает. Не нажимается отправить.
Помогите разобраться, почему.
<?php // Do not delete these lines
if ('comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
die ('Please do not load this page directly. Thanks!');
if (!empty($post->post_password)) { // if there's a password
if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) { // and it doesn't match the cookie
?>
<p class="nocomments">Введите пароль.</p>
<?php
return;
}
}
/* This variable is for alternating comment background */
$oddcomment = '';
?>
<br />
<?php if ($comments) : ?>
<h2 id="comments">Обсуждение | <?php comments_number('Нет комментариев', '1 комментарий', '2 комментария', '3 комментария', '4 комментария', '% комментариев' );?></h2>
<div class="commentlist alert alert-success">
<?php wp_list_comments(); ?>
</div>
<?php else : // this is displayed if there are no comments so far ?>
<?php if ('open' == $post->comment_status) : ?>
<!-- If comments are open, but there are no comments. -->
<?php else : // comments are closed ?>
<!-- If comments are closed. -->
<?php endif; ?>
<?php endif; ?>
<?php if ('open' == $post->comment_status) : ?>
<br />
<div id="respond">
<div class="cancel-comment-reply">
<small><?php cancel_comment_reply_link(); ?></small>
</div>
<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
<p>Пожалуйста, <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>">зарегистрируйтесь </a> для комментирования.</p>
<?php else : ?>
<!--тут форма-->
<h2>Оставить комментарий</h2>
<div class="comm-add">
<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" class="form">
<?php if ( $user_ID ) : ?>
<p>Здравствуйте, <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a></p>
<?php else : ?>
<div class="input-prepend">
<input class="first" type="text" name="name" placeholder="Имя" required>
</div>
<div class="input-prepend">
<input class="first" type="text" name="email" placeholder="Email" required>
</div>
<?php endif; ?>
<textarea id="comment" style="display: none;" name="comment" class="input textarea" class="message" placeholder="Комментарий" required></textarea>
<textarea class="input textarea" class="message" placeholder="Комментарий" id="real-comment" name="real-comment" required></textarea>
<?php if( function_exists(checkbot_show) ) { checkbot_show(); } ?>
<p><input type="submit" class="button" value="Отправить" name="submit" id="submit" tabindex="5" class="btn btn-success" />
<?php comment_id_fields(); ?>
</p>
<?php do_action('comment_form', $post->ID); ?>
</form>
</div>
<?php endif; // If registration required and not logged in ?>
</div>
<?php endif; // if you delete this the sky will fall on your head ?>
Когда только начинал эту форму делать, в самом начале пробовал отправить комментарий - все работало. Но когда все закончил, не нажимается кнопка отправить.