我有一个登录页,其中包括一段最新帖子的摘录,并带有一个“继续阅读”链接,可以将读者带到最新的帖子。
在我的搜索中,我找到了很多关于如何链接到指定类别中的最新帖子的指南,但对于不分类别的最新帖子,我发现的指南不多(因为它会有所不同)。
预计到达时间:
<li>
<h2><a href="http://growingedgecoaching.com/blog">Growing Edge Blog</a></h2>
<?php
// Get the most recent post
$the_query = new WP_Query( \'posts_per_page=1\' );
// Pull the excerpt
while ( $the_query->have_posts() ) : $the_query->the_post();
the_excerpt();
endwhile;
// Reset Post Data
wp_reset_postdata();
?>
<div class="forward-link">
<?php
$latest = new WP_Query( array( \'posts_per_page\' => 1 ) );
while( $latest->have_posts() ) :
$latest->the_post();
echo \'<a href="\' . get_permalink() . \'>\' . get_the_title() . \'</a>\';
endwhile;
?>
</div><!-- end forward-link -->
</li>
有什么想法吗?谢谢