gpt4 book ai didi

php - 如何在自定义 PHP 文件中包含 Wordpress 帖子?

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:07:14 26 4
gpt4 key购买 nike

这就是我想要做的:

我希望 /summary.php 包含我博客中的 5 个最新帖子(仅摘录),该博客位于 /wp 中。

有没有办法在 /summary.php 中包含 Wordpress 并且只打印这些帖子的 html? (也许我应该解析 rss?)

最佳答案

查看Integrating WordPress with your Website

这是该页面的示例,按字母顺序显示前十篇文章:

<?php
require('/the/path/to/your/wp-blog-header.php');
?>

<?php
$posts = get_posts('numberposts=10&order=ASC&orderby=post_title');
foreach ($posts as $post) : start_wp(); ?>
<?php the_date(); echo "<br />"; ?>
<?php the_title(); ?>
<?php the_excerpt(); ?>
<?php
endforeach;
?>

如果您想要 10 篇最新的帖子,请使用 $posts = get_posts('numberposts=10');

关于php - 如何在自定义 PHP 文件中包含 Wordpress 帖子?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2515871/

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