与链接PHP Wordpress Post Loop的奇怪的不端行为

时间:2014-07-03 12:38:32

标签: php wordpress loops chain

我试图简单地输出所有帖子,但一切都运行正常,但我想在标签中添加类,但是这些类是用纯文本写的,不是用标签写的。

我的代码:

<?php
            if (have_posts()) :
                // Start the Loop.
                while (have_posts()) : the_post();

                    echo '<article id="post-' . get_the_ID() . '" ' . post_class() . '>';
                    twentyfourteen_post_thumbnail();
                    the_title('<h1 class="entry-title"><a href="' . esc_url(get_permalink()) . '" rel="bookmark">', '</a></h1>');
                    echo '<div class="entry-summary">';
                    the_excerpt();
                    echo '</div>';
                    echo '</article>';


                endwhile;

            endif;
            ?>

我认为它与链接有关但我尝试了所有...... :(

placed outside of tag

1 个答案:

答案 0 :(得分:1)

替换

echo '<article id="post-' . get_the_ID() . '" ' . post_class() . '>';

echo '<article id="post-' . get_the_ID() . '" ';
post_class();
echo '>';