我在Word Press上使用静态首页,我希望页面在页面底部显示我最近的帖子。问题是,代码仅针对一个特定的帖子,我不知道如何告诉计算机获取最新的帖子并使其正确显示。这是我的网页链接,请记住它远未完成。 Electric Car WordPress Site
<?php
$args = array('name' => '4th');
$query = new WP_Query( $args );
while ( $query->have_posts() ) : $query->the_post(); ?>
<div class="post">
<!-- Display the Title as a link to the Post's permalink. -->
<h2><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<!-- Display the date (November 16th, 2009 format) and a link to other posts by this posts author. -->
<small><?php the_time('F jS, Y'); ?> by <?php the_author_posts_link(); ?></small>
<!-- Display the Post's content in a div box. -->
<div class="entry">
<?php the_content(); ?>
<?php // get_template_part( 'content', 'single' ); ?>
</div>
答案 0 :(得分:0)
更改你的参数数组,每页选择一个帖子(使用&#34; name&#34;参数,你当前正在选择一个具有slug&#34; 4th&#34;的特定帖子)。没有任何进一步的论点,应该出现最新的帖子。
$ args = array(&#39; posts_per_page&#39; =&gt; 1);
有关WordPress查询参数的更多信息,请查看法典中的此页面:https://codex.wordpress.org/Class_Reference/WP_Query