我使用两个主题(完整主题和桌面主题),所以我试图让它们以类似的方式运行。
存档。用于移动主题的php正在做我想要做的事情,即只显示标题和帖子摘录。我认为这是一段代码:
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( \'content\', get_post_format() ); ?>
<?php endwhile; ?>
存档。桌面网站的php显示了全部帖子,我希望它只显示摘录以及特色图片。
<div <?php post_class() ?>>
<span class="postmetadata"><?php the_category(\' / \'); ?> — <?php edit_post_link( __( \'Edit\', \'mythemename\' ), \'\', \' — \'); ?> <?php comments_popup_link( __( \'No Comments\', \'mythemename\' ), \'1 Comment\', \'% Comments\' ); ?></span><br/>
<small><span class="datef"><?php the_time(\'d\'); ?></span><br /><?php the_time(\'M \\\'y\'); ?> <!-- by <?php the_author() ?> --></small>
<h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php _e( \'Permanent link to \', \'mythemename\' ); ?><?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="entry">
<?php the_content( \'<em>Continue reading →</em>\' ); ?>
</div>
<div class="clearfix"></div>
</div>
我不知道它没有使用php函数来完成所有这些。我怎样才能用能显示所有相同内容,但只显示帖子摘录和特色图片的东西来代替它呢?