Comment form go awry
-
Hi! Now I’m doing a website with bootstrap and wordpress and comment form I have now looks pretty wrong: https://video-walks.ru.com/?p=403. The words all under inputs and everything too short. After a comment is submitted there is still zero number above is showing: (0 комментариев на ?“Пигмалион”?). What can be wrong? There’s my single.php:
<?php get_header(); ?> <div class="row"> <div class="span8"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <h1><?php the_title(); ?></h1> <p><em><?php the_time('l, F jS, Y'); ?></em></p> <?php the_content(); ?> <hr> <?php comments_template('',true); ?> <?php endwhile; else: ?> <p><?php _e('Sorry, this page does not exist.'); ?></p> <?php endif; ?> </div> <div class="span4"> <?php get_sidebar(); ?> </div> </div> <ul class="pager"> <li class="previous"> <?php previous_post_link('%link', '? Предыдущая запись',TRUE); ?> </li> <li class="next"><?php next_post_link('%link', 'Следующая запись ?', TRUE); ?> </li> </ul> <?php get_footer(); ?>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Comment form go awry’ is closed to new replies.