Viewing 4 replies - 1 through 4 (of 4 total)
  • yes.

    <?php comments_popup_link('Comments(0)', 'Comment(1)', 'Comments(%)'); ?>»

    move above block in your desired location

    Regards
    http://chinmoy29.wordpress.com

    Thread Starter jaclynsuzann

    (@jaclynsuzann)

    Thank you for your help… Do you where the bottom of the blog post would be, where I would move it to within this code:

    <div id=”posts”>
    <?php

    //The Query
    query_posts(‘posts_per_page=1’);
    ?>

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div class=”breadcrumb”>
    Home » Wealth Blog » <?php the_category(‘ » ‘); ?>
    </div>
    <h2>” rel=”bookmark”>”<?php the_title(); ?>”</h2>
    <h4 class=”post-heading”>Submitted by <?php the_author_posts_link(); ?> on <?php the_date(); ?> – <?php the_time(); ?><div style=”float:right”>
    <?php comments_popup_link(__(‘Comments (0)’), __(‘Comments (1)’), __(‘Comments (%)’)); ?>»</div></h4>
    <?php the_date( ‘F Y’, ‘[ ‘, ‘ ]’); ?>

    <?php the_content(__(‘(more…)’)); ?>
    <?php endwhile; else: ?>
    <p><?php _e(‘Sorry, no posts matched your criteria.’); ?></p>
    <?php endif; ?>

    <?php
    //Reset Query
    wp_reset_query();
    ?>

    </div>

    </div>

    <div id="posts">
    <?php
    
    //The Query
    query_posts('posts_per_page=1');
    ?>
    
    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div class="breadcrumb">
    Home » Wealth Blog » <?php the_category(' » '); ?>
    </div>
    <h2>" rel="bookmark">"<?php the_title(); ?>"</h2>
    <h4 class="post-heading">Submitted by <?php the_author_posts_link(); ?> on <?php the_date(); ?> - <?php the_time(); ?></h4>
    <?php the_date( 'F Y', '[ ', ' ]'); ?>
    
    <?php the_content(__('(more...)')); ?>
    
    <div style="float:right">
    <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?>»</div>
    
    <?php endwhile; else: ?>
    <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
    <?php endif; ?>
    
    <?php
    //Reset Query
    wp_reset_query();
    ?>
    
    </div>
    
    </div>
    Thread Starter jaclynsuzann

    (@jaclynsuzann)

    Perfect! Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Move “Comments (0) to below blog post’ is closed to new replies.