Temat: Wordpress theme
Witam.
Posiadam theme ColdBlue.
Gdy wchodzę w jakąś podstronę i klikam "Komentuj" nic się nie pojawia, adres strony zmienia się na #respond i koniec.
W nowych wpisach na głównej to działa, ale podstrony, niestety, nie.
Moje page.php:
<?php get_header(); ?>
<div id="content">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="post-title">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Stały link do wpisu <?php the_title(); ?>"><?php the_title(); ?></a></h2>
<h3>Dnia <?php the_time('j F Y') ?> | <?php edit_post_link('Edytuj', ' | ', ''); ?> | <?php comments_popup_link('Brak komentarzy »', '1 komentarz »', 'Komentarzy: % »'); ?></h3>
</div>
<div class="post-content">
<?php the_content('Czytaj dalszą część strony »'); ?>
</div>
<?php wp_link_pages(array('before' => '<p><strong>Strony:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
<?php endwhile; endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>