我在wordpress中进行主题集成。我创建了home.php(模板页面)并从后端(前端页面)中选择。 现在我想在首页上显示帖子。我在首页放置以下代码显示帖子。但是代码不能正常工作。我哪里错了? 这是我的代码
<?php
if ( have_posts() ) : while ( have_posts() ) : the_post();
the_content();
endwhile;
endif;
?>
答案 0 :(得分:0)
您可以使用以下代码 -
<?php
$args = array('posts_per_page' => 3, 'post__not_in' => get_option('sticky_posts'));
$the_query = new WP_Query($args);
if ($the_query->have_posts()) :
while ($the_query->have_posts()) : $the_query->the_post(); ?>
<a href="<?php the_permalink(); ?>"><?php esc_html(the_title()); ?></a>
<?php the_excerpt(); ?>
<?php
endwhile; ?>
<?php wp_reset_postdata(); ?>
<?php endif; ?>