Добрый день! помогите убрать : "Можно использовать следующие HTML-теги и атрибуты: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>"
comments.php выглядит так:
"
comments.php выглядит так:
"
Код |
---|
<?php if ( post_password_required() ) return; ?> <div id="comments"> <?php if ( have_comments() ) : ?> <div id="comment-header" class="cf"> <h3 class="title"><?php comments_number( __('Комментарии', 'frontier'), __('1 комментарий', 'frontier'), __('% Комментариев', 'frontier') ); ?></h3> <?php if ( comments_open() ) : ?> <span class="respond-link"><a href="#respond"><?php _e('Добавить комментарий', 'frontier'); ?></a></span> <?php endif; ?> </div> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?> <nav class="comment-navigation"> <div class="comment-nav"><?php paginate_comments_links(); ?></div> </nav> <?php endif; ?> <ol class="comment-list"> <?php wp_list_comments( array( 'style' => 'ol', 'short_ping' => true, 'avatar_size' => 50, ) ); ?> </ol> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?> <nav class="comment-navigation"> <div class="comment-nav"><?php paginate_comments_links(); ?></div> </nav> <?php endif; ?> <?php if ( !comments_open() && get_comments_number() ) : ?> <div id="no-comments"><i class="genericon genericon-warning"></i><h4><?php _e( 'Комментарии закрыты.' , 'frontier' ); ?></h4></div> <?php endif; ?> <?php endif; ?> <?php comment_form(); ?> </div> |