我试图制作一个模板,该模板在主div中包含页面内容,但在同一页面中有类别基本帖子循环,其中包含标题、日期、内容和阅读更多链接。
我现在是这样的
<?php if(have_posts()): while(have_posts()): the_post(); ?>
<?php
//Post thumbnails need this in functions.php: `add_theme_support(\'post-thumbnails\');`
if(has_post_thumbnail()) the_post_thumbnail(array(100,100));
?>
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
<?php endwhile; ?>
<?php else: ?>
<!-- No posts found -->
<?php endif; ?>
发布类别循环是这样的。
<?php $my_query = new WP_Query( "cat=4" );
if ( $my_query->have_posts() ) {
while ( $my_query->have_posts() ) {
$my_query->the_post();
echo \'<div id="blogi_loop">\';
echo \'<h1>\';
the_title();
echo \'</h1>\';
the_date(\'m.d.Y\');
the_content();
echo \'</div>\'; }
}
wp_reset_postdata();
?>
我怎么会在循环中只看到一天的格式?我如何看待阅读更多链接?