我的代码非常完美:
<?php
$temp = $wp_query; $wp_query= null;
$wp_query = new WP_Query(); $wp_query->query('posts_per_page=5' . '&paged='.$paged);
while ($wp_query->have_posts()) : $wp_query->the_post(); ?>
<h2><?php the_title(); ?></h2>
<span><?php the_date('m/d/y'); ?></span>
<a href="<?php the_permalink(); ?>"><button>Read More</button></a>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
我想在日期和按钮之间显示帖子内容的摘录。所以我添加了<p><?php the_content(); ?></p>
。没工作。我试过了<p><?php get_the_content(); ?></p>
。依然没有。
我尝试将<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
循环放在所有HTML和段落上。两者都没有收获。
如何显示摘录?