gpt4 book ai didi

wordpress - 在页面上显示最近的 WordPress 帖子

转载 作者:行者123 更新时间:2023-12-03 22:22:22 27 4
gpt4 key购买 nike

我想在 WordPress 的页面中显示所有最近的 WordPress 帖子。我尝试了一些插件,但运气不佳。我只想显示最后 10 篇帖子的标题和摘录。有人能指出我正确的方向吗?

感谢任何帮助。

谢谢,凯文

最佳答案

创建recentpost.php并将其保存在与当前主题相同的目录中

这应该是您的recentpost.php 的基本内容

//-------start here
<?php
/*
Template Name: Recent Post
*/
?>
<?php
get_header();
?>

<h2>Recent Posts</h2>
<ul>
<?php
$args = array( 'numberposts' => '10' );
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $recent ){
echo '<li><a href="' . get_permalink($recent["ID"]) . '" title="Look '.$recent["post_title"].'" >' . $recent["post_title"].'</a> </li> ';
}
?>
</ul>

<?php
get_sidebar();
get_footer();
?>

//--------end here

在您的管理控制页面上,创建新页面,然后在右侧您可以选择模板“最近的帖子”。

关于wordpress - 在页面上显示最近的 WordPress 帖子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7392289/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com