1

我正在创建我的第一个 wordpress 主题(也是第一次真正使用 wordpress)。

我试图让我的日期和评论计数包含在循环中,即使我将它放在侧边栏中的左侧并且我不知道如何包含它。

这是我的帖子代码(它包括日期、评论计数和按此顺序发布的帖子,帖子目前仅是循环的一部分):

(我使用的是 960 网格,因此您可能会在下面看到网格类)

<div class="date_banner">
        <div class="d"><!-- sidebar 1 --><?php the_time('d'); ?></div>
        <div class="m"><!-- sidebar 1 --><?php the_time('M'); ?></div>
        <div class="y"><!-- sidebar 1 --><?php the_time('Y'); ?></div>
    </div>
    <div class="commentsnumber">
    <?php comments_number('No comment', '1 comment', '% comments'); ?>
    </div>
    </div>
    <div class="grid_10">

    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
        <!-- post -->
        <div class="post">
            <div class="titlepostauthorimage">
            <div class="post-title">
                <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
            </div>
            <div class="post-author-image">

            </div>
            <div class="post-author">
                 <?php the_author_posts_link(); ?>
            </div>
            <div class="post-image">
                <?php the_post_thumbnail( $size, $attr ); ?> 
            </div>
            </div>
            <div class="post-bodyborder">
            <div class="post-body">
                <?php the_content(); ?>
            </div>
            </div>
            <div class="post-metaborder">
            <div class="post-meta">
                <?php the_category(', '); ?>
                <!-- post tags -->
            </div>
            </div>
            <div class="post-comments">
            <?php wp_list_comments( $args ); ?> 
            </div>
        </div>
        <!-- post -->
    <?php endwhile; else: ?>
        <!-- In case no posts were found -->
        <h1>Hmmm? Cam't. Find. Post.</h1>
    <?php endif; ?>

当我将循环移动到测试代码中的日期上方时,会发生以下情况:测试

检查员说,在第一个 grid_10 类中,日期和评论计数低于帖子: 检查员


这是我完成的主题应该是什么样子,您可以在http://benlevywebdesign.com/wordpress/上查看我正在进行的工作(只有帖子在循环中,上面的屏幕截图是一个测试/示例当我只是移动循环代码时会发生什么)

主题设计

4

3 回答 3

1

它可能是这样的(它只是伪代码)

<div class="container_16" >
    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

        <div class="grid_12" >
           <div class="grid_2"> date banner html goes in here </div>
           <div class="grid_10"> post html goes in here</div>          
        </div>

    <?php endwhile; else: ?>
    <!-- In case no posts were found -->
    <h1>Hmmm? Cam't. Find. Post.</h1>
    <?php endif; ?>
</div>
于 2012-10-26T03:38:23.100 回答
0
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <div class="grid_2">
    <div class="date_banner">
            <div class="d"><!-- sidebar 1 --><?php the_time('d'); ?></div>
            <div class="m"><!-- sidebar 1 --><?php the_time('M'); ?></div>
            <div class="y"><!-- sidebar 1 --><?php the_time('Y'); ?></div>
        </div>
        <div class="commentsnumber">
        <?php comments_number('No comment', '1 comment', '% comments'); ?>
        </div>
    </div>
    <!-- post -->
    <div class="grid_10 post">
        <div class="titlepostauthorimage">
            <div class="post-title">
                <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
            </div>
            <div class="post-author-image">

            </div>
            <div class="post-author">
                 <?php the_author_posts_link(); ?>
            </div>
            <div class="post-image">
                <?php the_post_thumbnail( $size, $attr ); ?> 
            </div>
        </div>
        <div class="post-bodyborder">
            <div class="post-body">
                <?php the_content(); ?>
            </div>
        </div>
        <div class="post-metaborder">
            <div class="post-meta">
                <?php the_category(', '); ?>
                <!-- post tags -->
            </div>
        </div>
        <div class="post-comments">
        <?php wp_list_comments( $args ); ?> 
        </div>
    </div>
    <!-- post -->
<?php endwhile; else: ?>
    <!-- In case no posts were found -->
    <h1>Hmmm? Cam't. Find. Post.</h1>
<?php endif; ?>
于 2012-10-25T18:33:42.263 回答
0

要获取发布日期和时间,请使用此

<?php the_time('F j, Y'); ?> at <?php the_time('g:i a'); ?>

要获得评论计数,请使用此

 <?php comments_number('No reply', '1 reply', '% replies'); ?>

放置在循环中的任何位置

参考:http://codex.wordpress.org/Function_Reference/comments_number

于 2012-10-25T16:15:14.470 回答