/ Published in: PHP
URL: http://www.ladetentegenerale.com/blog/la-playlist-du-dimanche-23/
Comments are not working properly after adding the rel_box div. The comments displayed are the ones from the last related post.
Can't figure out why. Check above link to see it on the website.
Expand |
Embed | Plain Text
<?php get_header(); ?> <div id="content"> <div id="contentleft"> <div class="postarea"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="posttitle"> <h3><?php the_title(); ?></h3> <div class="postauthor"> <p><?php _e("Posted by", 'organicthemes'); ?> <?php the_author_posts_link(); ?> on <?php the_time('l, F j, Y'); ?> · <a href="<?php the_permalink(); ?>#comments"><?php comments_number('Leave a Comment', '1 Comment', '% Comments'); ?></a> <?php edit_post_link('(Edit)', '', ''); ?></p> </div> </div> <?php the_content(__('Read More'));?><div style="clear:both;"></div> <?php trackback_rdf(); ?> <div style="margin-top:10px"><script src="http://connect.facebook.net/fr_FR/all.js#xfbml=1"></script><fb:like show_faces="false" width="520" style="margin-right:10px"></fb:like><a href="http://twitter.com/share" class="twitter-share-button" data-count="horizontal" data-via="DetenteGenerale">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div> <div class="postmeta"> <p><?php _e("Filed under", 'organicthemes'); ?> <?php the_category(', ') ?> · <?php _e("Tagged with", 'organicthemes'); ?> <?php the_tags('') ?></p> </div> </div> <div class="rel_box"> <?php $tags = wp_get_post_tags($post->ID); if ($tags) { $first_tag = $tags[0]->term_id; 'showposts'=>4, 'caller_get_posts'=>1 ); $rel_posts = new WP_Query($args); if( $rel_posts->have_posts() ) { while ($rel_posts->have_posts()) : $rel_posts->the_post(); ?> <div class="rel_posts"> <div class="rel_thumb"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail(array(145,145)); ?></a></div> <div class="rel_link"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></div> </div> <?php endwhile; } } ?> <div class="clearer"></div> </div> <div class="postcomments"> <?php comments_template('',true); ?> </div> <?php endwhile; else: ?> <p><?php _e("Sorry, no posts matched your criteria.", 'organicthemes'); ?></p> <?php endif; ?> </div> <?php include(TEMPLATEPATH."/sidebar_right.php");?> </div> <!-- The main column ends --> <?php get_footer(); ?>
You need to login to post a comment.
