Forum Replies Created

Viewing 1 replies (of 1 total)
  • This is a great theme. I love it.

    Just found a bug in the post date (in the cloud) which has said to be fixed in 1.1.6.

    In post.php, line 24, 25, the href property should have “?m=” and $mon is not defined. Here is my fix:

    <?php $mon = get_the_time('m'); $month = get_the_time('M'); $yr = get_the_time('Y'); ?>
                                              <span class="month"><a href="<?php bloginfo('url'); ?>/?m=<?php echo $yr; ?><?php echo $mon; ?>/"><?php echo $month; ?></a>&nbsp;<?php the_time('j'); ?></span><br />
                                              <span class="date"><a href="<?php bloginfo('url'); ?>/?m=<?php echo $yr; ?>/"><?php the_time('Y'); ?></a></span>
Viewing 1 replies (of 1 total)