我试图简单地输出所有帖子,但一切都运行正常,但我想在标签中添加类,但是这些类是用纯文本写的,不是用标签写的。
我的代码:
<?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;
?>
我认为它与链接有关但我尝试了所有...... :(
答案 0 :(得分:1)
替换
echo '<article id="post-' . get_the_ID() . '" ' . post_class() . '>';
与
echo '<article id="post-' . get_the_ID() . '" ';
post_class();
echo '>';