• I want to get the reply to link in my template, But i dont want to include the wp_list_comments(), is there any way i can get it?

    Thanks in advance

    This is my comment section so far:

    <?php if ($comments) : ?>
    	<h3 id="comments">Comentarios</h3>
    	<ol class="commentlist">
    	<?php foreach ( $comments as $comment ) : ?>
    		<li class="<?php echo $oddcomment; ?>" id="comment-<?php comment_ID() ?>">
    
    <a class="gravatar">
    <?php
    $mygravatarurl = get_bloginfo('template_directory')."/images/gravatar-trans.png";
          echo get_avatar( $comment, 60, $mygravatarurl);
    ?>
    </a>
    
    			<div class="commentbody">
    			<cite><?php comment_author_link() ?></cite>
    			<?php if ($comment->comment_approved == '0') : ?>
    			<em>Listo!, tu comentario eta en moderación.</em>
    			<?php endif; ?>
    			<br />
    			<small class="commentmetadata"><?php comment_date('j') ?> de <?php comment_date('F') ?> a las <?php comment_time() ?> <?php edit_comment_link('Editar','&nbsp;&nbsp;',''); ?>  </small>
    
    			<?php comment_text() ?>
    >>>>>HERE I WANT THE REPLY TO LINK<<<<<<       
    
    			</div><div class="cleared"></div><!-- clears the floats so the backgrounds show all the way down -->
    
    		</li>
    
    	<?php /* Changes every other comment to a different class */
    		if ('alt' == $oddcomment) $oddcomment = '';
    		else $oddcomment = 'alt';
    	?>
    	<?php endforeach; /* end for each comment */ ?>
    	</ol>

    Im using WP 2.8

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)

The topic ‘Get the Reply to Link’ is closed to new replies.