尝试将最近的 post 添加到 Wordpress 中的静态首页
Trying to add recent post to static front page in Wordpress
我在 Word Press 上使用静态首页,我希望该页面在页面底部显示我最近的 post。问题是,该代码仅适用于一个特定的 post,我不知道如何告诉计算机获取最新的 post 并使其正确显示。这是我网页的 link,请记住它还远未完成。 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>
将您的参数数组更改为每页 select 个 post(使用 "name" 参数,您目前正在 select 使用特定 post别名“第四”)。没有任何进一步的争论,最近的 post 应该出现。
$args = array('posts_per_page' => 1 );
有关 WordPress 查询参数的更多信息,请查看 Codex 中的此页面:https://codex.wordpress.org/Class_Reference/WP_Query
我在 Word Press 上使用静态首页,我希望该页面在页面底部显示我最近的 post。问题是,该代码仅适用于一个特定的 post,我不知道如何告诉计算机获取最新的 post 并使其正确显示。这是我网页的 link,请记住它还远未完成。 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>
将您的参数数组更改为每页 select 个 post(使用 "name" 参数,您目前正在 select 使用特定 post别名“第四”)。没有任何进一步的争论,最近的 post 应该出现。
$args = array('posts_per_page' => 1 );
有关 WordPress 查询参数的更多信息,请查看 Codex 中的此页面:https://codex.wordpress.org/Class_Reference/WP_Query