Рождённый в СССР | Прошу помощи (только хорошо знающих php)! Нужно убрать поле сайт и убрать надпись "вы можете использовать следующие тэги и.... пошло перечисление тэгов". Код:
Код: <?php
/**
* Template for displaying comments
*
* @package Prognoz-Forex
*/
if (post_password_required()) {
return;
}
?>
<div id="comments" class="comments-area">
<?php // You can start editing here -- including this comment! ?>
<?php if (have_comments()) { ?>
<h2 class="comments-title">
<?php
printf(_nx('1 комментарий к записи “%2$s”', 'Комментариев: %1$s к записи “%2$s”', get_comments_number(), 'comments title', 'Prognoz-Forex'), number_format_i18n(get_comments_number()), '<span>' . get_the_title() . '</span>');
?>
</h2>
<?php if (get_comment_pages_count() > 1 && get_option('page_comments')) { // are there comments to navigate through ?>
<h3 class="screen-reader-text sr-only"><?php _e('Comment navigation', 'Prognoz-Forex'); ?></h3>
<ul id="comment-nav-above" class="comment-navigation pager" role="navigation">
<li class="nav-previous previous"><?php previous_comments_link(__('← Старые комментарии', 'Prognoz-Forex')); ?></li>
<li class="nav-next next"><?php next_comments_link(__('Новые комментарии →', 'Prognoz-Forex')); ?></li>
</ul><!-- #comment-nav-above -->
<?php } // check for comment navigation ?>
<ul class="media-list">
<?php
/* Loop through and list the comments. Tell wp_list_comments()
* to use PrognozForexComment() to format the comments.
* If you want to override this in a child theme, then you can
* define PrognozForexComment() and that will be used instead.
* See PrognozForexComment() in inc/template-tags.php for more.
*/
wp_list_comments(array('avatar_size' => '64', 'callback' => 'PrognozForexComment'));
?>
</ul><!-- .comment-list -->
<?php if (get_comment_pages_count() > 1 && get_option('page_comments')) { // are there comments to navigate through ?>
<h3 class="screen-reader-text sr-only"><?php _e('Comment navigation', 'Prognoz-Forex'); ?></h3>
<ul id="comment-nav-below" class="comment-navigation comment-navigation-below pager" role="navigation">
<li class="nav-previous previous"><?php previous_comments_link(__('← Старые комментарии', 'Prognoz-Forex')); ?></li>
<li class="nav-next next"><?php next_comments_link(__('Новые комментарии →', 'Prognoz-Forex')); ?></li>
</ul><!-- #comment-nav-below -->
<?php } // check for comment navigation ?>
<?php } // have_comments() ?>
<?php
// If comments are closed and there are comments, let's leave a little note, shall we?
if (!comments_open() && '0' != get_comments_number() && post_type_supports(get_post_type(), 'comments')) { ?>
<p class="no-comments"><?php _e('Comments are closed.', 'Prognoz-Forex'); ?></p>
<?php
} //endif;
?>
<?php
$req = get_option('require_name_email');
$aria_req = ($req ? " aria-required='true'" : '');
$html5 = true;
// re-format comment allowed tags
$comment_allowedtags = allowed_tags();
$comment_allowedtags = str_replace(array("\r\n", "\r", "\n"), '', $comment_allowedtags);
$comment_allowedtags_array = explode('> <', $comment_allowedtags);
$formatted_comment_allowedtags = '';
foreach ($comment_allowedtags_array as $item) {
$formatted_comment_allowedtags .= '<code>';
if ($comment_allowedtags_array[0] != $item) {
$formatted_comment_allowedtags .= '<';
}
$formatted_comment_allowedtags .= $item;
if (end($comment_allowedtags_array) != $item) {
$formatted_comment_allowedtags .= '>';
}
$formatted_comment_allowedtags .= '</code> ';
}
$comment_allowed_tags = $formatted_comment_allowedtags;
unset($comment_allowedtags, $comment_allowedtags_array, $formatted_comment_allowedtags);
ob_start();
comment_form(
array(
'fields' => array(
'author' => '<div class="form-group">' .
'<label class="control-label col-md-2" for="author">' . __('Имя', 'Prognoz-Forex') . ($req ? ' <span class="required">*</span>' : '') . '</label> ' .
'<div class="col-md-10">' .
'<input id="author" name="author" type="text" value="' . esc_attr($commenter['comment_author']) . '" size="30"' . $aria_req . ' class="form-control" />' .
'</div>' .
'</div>',
'email' => '<div class="form-group">' .
'<label class="control-label col-md-2" for="email">' . __('Email', 'Prognoz-Forex') . ($req ? ' <span class="required">*</span>' : '') . '</label> ' .
'<div class="col-md-10">' .
'<input id="email" name="email" ' . ($html5 ? 'type="email"' : 'type="text"') . ' value="' . esc_attr($commenter['comment_author_email']) . '" size="30"' . $aria_req . ' class="form-control" />' .
'</div>' .
'</div>',
'url' => '<div class="form-group">' .
'<label class="control-label col-md-2" for="url">' . __('Сайт(не нужно)', 'Prognoz-Forex') . '</label> ' .
'<div class="col-md-10">' .
'<input id="url" name="url" ' . ($html5 ? 'type="url"' : 'type="text"') . ' value="' . esc_attr($commenter['comment_author_url']) . '" size="30" class="form-control" />' .
'</div>' .
'</div>',
),
'comment_field' => '<div class="form-group">' .
'<label class="control-label col-md-2" for="comment">' . _x('Текст', 'noun') . '</label> ' .
'<div class="col-md-10">' .
'<textarea id="comment" name="comment" cols="45" rows="8" aria-required="true" class="form-control"></textarea>' .
'</div>' .
'</div>',
'comment_notes_after' => '<p class="help-block">' .
sprintf(__('Вы можете использовать использовать такие тэги: %s', 'Prognoz-Forex'), $comment_allowed_tags) .
'</p>'
)
);
/**
* WordPress comment form does not support action/filter form and input submit elements. Rewrite these code when there is support available.
* @todo Change form class modification to use WordPress hook action/filter when it's available.
* @todo Change input submit class modification to use WordPress hook action/filter when it's available.
*/
$comment_form = str_replace('class="comment-form', 'class="comment-form form form-horizontal', ob_get_clean());
$comment_form = preg_replace('#(<input\b[^>]*\s)(type="submit")#i', '$1 type="submit" class="btn btn-primary"', $comment_form);
echo $comment_form;
unset($comment_allowed_tags, $comment_form);
?>
</div><!-- #comments --> Пробовал сам поправить - то виджеты слетят, то ещё чего. Помогите, пожалуйста. |